Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorick Peterse <yorickpeterse@gmail.com>2016-05-11 13:43:54 +0300
committerYorick Peterse <yorickpeterse@gmail.com>2016-05-12 14:03:55 +0300
commit443c3aa5972fda2f9899fe3618ebfb9a31f59e1f (patch)
tree6a676b4150ee88b73ef686196825daf7eaec3d31 /.rubocop.yml
parentd890807939a7b5ae9306cc347f87a1f53d46728e (diff)
Tell Rubocop to ignore lib/templates
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml3
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