diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-06-30 13:20:15 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-07-08 11:04:04 +0200 |
commit | c6f9a1c273beb7e427da1e384ed27e323d6f3b29 (patch) | |
tree | 9f2c94e7975c11870c2cca1bcfbe6d1dd169563a /.rubocop.yml | |
parent | 2c650b6f30d2e76cf632d6ce5771859aed67ac48 (diff) | |
download | gitlab-ce-c6f9a1c273beb7e427da1e384ed27e323d6f3b29.tar.gz |
Enable Style/IdenticalConditionalBranches Rubocop cop
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 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. |