Skip to content
Snippets Groups Projects
Commit 37617cb8 authored by Gabriel Mazetto's avatar Gabriel Mazetto :spy_tone1:
Browse files

Move rubocop params from .gitlab-ci.yml to Rakefile

parent f65b79b4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -23,7 +23,7 @@ rubocop:
stage: check
image: ruby:2.3.3
script:
- bundle exec rubocop -D config lib spec
- bundle exec rake rubocop
tags:
- docker
except:
Loading
Loading
Loading
Loading
@@ -3,3 +3,8 @@
require 'knapsack'
Rake.add_rakelib 'lib/gitlab/tasks'
Knapsack.load_tasks
require 'rubocop/rake_task'
RuboCop::RakeTask.new(:rubocop) do |t|
t.options = ['-D', 'config', 'lib', 'spec']
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment