diff options
author | Maxim Rydkin <maks.rydkin@gmail.com> | 2017-04-26 10:40:28 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-04-26 10:40:28 +0000 |
commit | 37c2c4a4339053403d3ac45a8e5c76df083fd454 (patch) | |
tree | d212fdd340a15c0e95d471364264158911db31a6 /.rubocop.yml | |
parent | 081dfc455b049c3d7cdf269f24ff764def5af31b (diff) | |
download | gitlab-ce-37c2c4a4339053403d3ac45a8e5c76df083fd454.tar.gz |
Decrease Cyclomatic Complexity threshold to 16
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: |