diff options
author | Yorick Peterse <yorickpeterse@gmail.com> | 2016-05-11 12:43:54 +0200 |
---|---|---|
committer | Yorick Peterse <yorickpeterse@gmail.com> | 2016-05-12 13:03:55 +0200 |
commit | 443c3aa5972fda2f9899fe3618ebfb9a31f59e1f (patch) | |
tree | 6a676b4150ee88b73ef686196825daf7eaec3d31 /.rubocop.yml | |
parent | d890807939a7b5ae9306cc347f87a1f53d46728e (diff) | |
download | gitlab-ce-443c3aa5972fda2f9899fe3618ebfb9a31f59e1f.tar.gz |
Tell Rubocop to ignore lib/templates
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 9f179efa3ce..5d56be65f1d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -21,6 +21,7 @@ AllCops: - 'lib/email_validator.rb' - 'lib/gitlab/upgrader.rb' - 'lib/gitlab/seeder.rb' + - 'lib/templates/**/*' ##################### Style ################################## @@ -276,7 +277,7 @@ Style/IdenticalConditionalBranches: Enabled: false # Checks the indentation of the first line of the right-hand-side of a -# multi-line assignment. +# multi-line assignment. Style/IndentAssignment: Enabled: false |