diff options
author | Rémy Coutable <remy@rymai.me> | 2017-04-26 10:40:29 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-04-26 10:40:29 +0000 |
commit | 04fcf3fabf00b62eb8da91a6ed9fb0fb9561d76a (patch) | |
tree | d212fdd340a15c0e95d471364264158911db31a6 /.rubocop.yml | |
parent | 081dfc455b049c3d7cdf269f24ff764def5af31b (diff) | |
parent | 37c2c4a4339053403d3ac45a8e5c76df083fd454 (diff) | |
download | gitlab-ce-04fcf3fabf00b62eb8da91a6ed9fb0fb9561d76a.tar.gz |
Merge branch '31362_decrease_cyclomatic_complexity_threshold_step1' into 'master'
Decrease Cyclomatic Complexity threshold to 16
See merge request !10928
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 e5549b64503..1625fbec333 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -562,7 +562,7 @@ Metrics/ClassLength: # of test cases needed to validate a method. Metrics/CyclomaticComplexity: Enabled: true - Max: 17 + Max: 16 # Limit lines to 80 characters. Metrics/LineLength: |