summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2017-12-26 16:30:36 +0800
committerLin Jen-Shin <godfat@godfat.org>2017-12-26 16:30:36 +0800
commitcc7a7aad80d9c5b8c03b12c3b961c2eadaab920c (patch)
tree8ac987730f35c85c521636d08b91671d3d03b46e /.rubocop.yml
parent29749f92b7f86d45af41509262601e47ee848d92 (diff)
downloadgitlab-ce-cc7a7aad80d9c5b8c03b12c3b961c2eadaab920c.tar.gz
Require our own custom cops; Remove missing cops41480-require-custom-cops
Also try to use the same config from EE
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 0199bb9683a..9adc2fae7a8 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -3,6 +3,7 @@ inherit_gem:
- rubocop-default.yml
inherit_from: .rubocop_todo.yml
+require: ./rubocop/rubocop
AllCops:
TargetRailsVersion: 4.2
@@ -24,8 +25,10 @@ Gitlab/ModuleWithInstanceVariables:
Exclude:
# We ignore Rails helpers right now because it's hard to workaround it
- app/helpers/**/*_helper.rb
+ - ee/app/helpers/**/*_helper.rb
# We ignore Rails mailers right now because it's hard to workaround it
- app/mailers/emails/**/*.rb
+ - ee/**/emails/**/*.rb
# We ignore spec helpers because it usually doesn't matter
- spec/support/**/*.rb
- features/steps/**/*.rb