diff options
author | Guilherme Garnier <guilherme.garnier@gmail.com> | 2015-10-03 00:56:16 -0500 |
---|---|---|
committer | Guilherme Garnier <guilherme.garnier@gmail.com> | 2015-10-03 00:56:16 -0500 |
commit | 0406455c8a9094d7849f586a473cf6f5d3253f10 (patch) | |
tree | 44efb3c44b99e15d142f8940de7c88426cfb5787 /.rubocop.yml | |
parent | d7eceafb27225dee1b62181c21ae7cc240d984bf (diff) | |
download | gitlab-ce-0406455c8a9094d7849f586a473cf6f5d3253f10.tar.gz |
Enable "UselessAssignment" rubocop lint
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 05b8ecc3b00..11e4502849a 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -932,7 +932,7 @@ Lint/UselessAccessModifier: Lint/UselessAssignment: Description: 'Checks for useless assignment to a local variable.' StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#underscore-unused-vars' - Enabled: false + Enabled: true Lint/UselessComparison: Description: 'Checks for comparison of something with itself.' |