summaryrefslogtreecommitdiff
path: root/.rubocop.yml
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-05-30 17:59:10 +0000
committerRobert Speicher <robert@gitlab.com>2016-05-30 17:59:10 +0000
commite7586cfbdc6a77b5771bea38a9ee3a9c17cdd37a (patch)
tree8c18de2755646c8e60c4554cf66d6475898b690f /.rubocop.yml
parentea329376302bac3bd49244ad043fa8adeb1d002e (diff)
parenta55e8f109fbaec1bb2db19a37a6537d8833c995c (diff)
downloadgitlab-ce-e7586cfbdc6a77b5771bea38a9ee3a9c17cdd37a.tar.gz
Merge branch 'rubocop/enable-negatedif-style-cop' into 'master'
Enable Style/NegatedIf Rubocop cop Favor `unless` over `if` for negative conditions (or control flow ||). ```ruby # bad do_something if !some_condition # bad do_something if not some_condition # good do_something unless some_condition # good some_condition || do_something ``` See #17478 See merge request !4355
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 877f0c2d45a..c27c8491126 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -394,7 +394,7 @@ Style/MutableConstant:
# Favor unless over if for negative conditions (or control flow or).
Style/NegatedIf:
- Enabled: false
+ Enabled: true
# Favor until over while for negative conditions.
Style/NegatedWhile: