diff options
author | Robert Speicher <robert@gitlab.com> | 2016-06-29 19:50:08 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-06-29 19:50:08 +0000 |
commit | 84113d7e725dcf6f9a3945853475f0cede957fec (patch) | |
tree | 95d82e602ffe0f52d2e7b579f167ffaaa55d5e9c /.rubocop.yml | |
parent | 722a6c533a33265214b993122167ff5398e198ea (diff) | |
parent | 28bafd5354427d27cabe40966bd069a75984e2b1 (diff) | |
download | gitlab-ce-84113d7e725dcf6f9a3945853475f0cede957fec.tar.gz |
Merge branch 'rubocop/enable-space-after-cops' into 'master'
Enable Style/SpaceAfterComma and Colon Rubocop cops
See #17478
See merge request !4991
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 23ed0c82e8c..cc3055ef66e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -534,11 +534,11 @@ Style/SingleLineMethods: # Use spaces after colons. Style/SpaceAfterColon: - Enabled: false + Enabled: true # Use spaces after commas. Style/SpaceAfterComma: - Enabled: false + Enabled: true # Do not put a space between a method name and the opening parenthesis in a # method definition. |