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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-02-03 08:53:27 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-02-03 08:53:27 +0300
commitd04344373b899c1e54948ca46478f7b907a576d2 (patch)
tree598e2383d7c40f3263f08d40edc256fb82a09c76 /.rubocop.yml
parent615bb941358389a1fdfec34abc6af8b61db75580 (diff)
Rubocop: no trailing newlines
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 1b62416f74c..965a52c7552 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -657,7 +657,7 @@ Style/Tab:
Style/TrailingBlankLines:
Description: 'Checks trailing blank lines and final newline.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#newline-eof'
- Enabled: false
+ Enabled: true
Style/TrailingComma:
Description: 'Checks for trailing comma in parameter lists and literals.'
@@ -909,7 +909,7 @@ Lint/StringConversionInInterpolation:
Lint/UnderscorePrefixedVariableName:
Description: 'Do not use prefix `_` for a variable that is used.'
- Enabled: false
+ Enabled: true
Lint/UnusedBlockArgument:
Description: 'Checks for unused block arguments.'
@@ -966,7 +966,7 @@ Rails/Delegate:
Rails/HasAndBelongsToMany:
Description: 'Prefer has_many :through to has_and_belongs_to_many.'
- Enabled: false
+ Enabled: true
Rails/Output:
Description: 'Checks for calls to puts, print, etc.'