diff options
author | Gabriel Mazetto <gabriel@gitlab.com> | 2016-05-10 23:24:23 -0300 |
---|---|---|
committer | Gabriel Mazetto <gabriel@gitlab.com> | 2016-05-13 04:45:52 -0300 |
commit | 311fb58c44fe6dd14709c8eb8f9346ec73e03aff (patch) | |
tree | 4d06040aa2aea23ac72a9731f2fb247ae55dfaec /.rubocop.yml | |
parent | 6aef2567330fb7c3e549d3f434acc0c272a8366f (diff) | |
download | gitlab-ce-311fb58c44fe6dd14709c8eb8f9346ec73e03aff.tar.gz |
Require space around operators
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml index 3fb2f2df592..562197300b4 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -276,7 +276,7 @@ Style/IdenticalConditionalBranches: Enabled: false # Checks the indentation of the first line of the right-hand-side of a -# multi-line assignment. +# multi-line assignment. Style/IndentAssignment: Enabled: false @@ -531,7 +531,7 @@ Style/SpaceAroundKeyword: # Use a single space around operators. Style/SpaceAroundOperators: - Enabled: false + Enabled: true # Checks that the left block brace has or doesn't have space before it. Style/SpaceBeforeBlockBraces: |