diff options
author | Lin Jen-Shin <godfat@godfat.org> | 2017-12-15 19:37:57 +0800 |
---|---|---|
committer | Lin Jen-Shin <godfat@godfat.org> | 2017-12-15 19:37:57 +0800 |
commit | 02994fbe7715ef4539f720b6d395eeb9a3d71f14 (patch) | |
tree | dd9f8e99277725619b4afb7c55f40a87db7db1c1 /.rubocop.yml | |
parent | 59ac184fcf64f1812fbfd88a00ea029ca3c1f4e7 (diff) | |
download | gitlab-ce-02994fbe7715ef4539f720b6d395eeb9a3d71f14.tar.gz |
Backport changes from EE
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index d103a14518f..7721cfaf850 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1191,9 +1191,9 @@ Gitlab/ModuleWithInstanceVariables: Enable: true Exclude: # We ignore Rails helpers right now because it's hard to workaround it - - app/helpers/*_helper.rb + - app/helpers/**/*_helper.rb # We ignore Rails mailers right now because it's hard to workaround it - - app/mailers/emails/*.rb + - app/mailers/emails/**/*.rb # We ignore spec helpers because it usually doesn't matter - spec/support/**/*.rb - features/steps/**/*.rb |