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:
authorRobert Speicher <rspeicher@gmail.com>2016-05-23 20:06:36 +0300
committerRobert Speicher <rspeicher@gmail.com>2016-05-23 20:06:36 +0300
commit013bccbd93c4d44994126a52bf997ea59ffe594e (patch)
treee6a82162bc1b9f8c17d1f0554c487146e4c3d908 /.rubocop.yml
parentbc806831e818b6e1ec2d1ae81221126f03c01f11 (diff)
Enable Style/DefWithParentheses cop and fix single offense
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 0946ef5d848..d09e493ef38 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -152,7 +152,7 @@ Style/ConstantName:
# Use def with parentheses when there are arguments.
Style/DefWithParentheses:
- Enabled: false
+ Enabled: true
# Checks for use of deprecated Hash methods.
Style/DeprecatedHashMethods: