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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-06-30 14:20:15 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2016-07-08 12:04:04 +0300
commitc6f9a1c273beb7e427da1e384ed27e323d6f3b29 (patch)
tree9f2c94e7975c11870c2cca1bcfbe6d1dd169563a /.rubocop.yml
parent2c650b6f30d2e76cf632d6ce5771859aed67ac48 (diff)
Enable Style/IdenticalConditionalBranches Rubocop cop
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 cd13f581517..3aac8401848 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -284,7 +284,7 @@ Style/IfWithSemicolon:
# Checks that conditional statements do not have an identical line at the
# end of each branch, which can validly be moved out of the conditional.
Style/IdenticalConditionalBranches:
- Enabled: false
+ Enabled: true
# Checks the indentation of the first line of the right-hand-side of a
# multi-line assignment.