diff options
author | Robert Speicher <robert@gitlab.com> | 2017-09-12 17:02:13 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2017-09-12 17:02:13 +0000 |
commit | 467dffa631e91e206f5835cc6d1fdb7bb3b112e0 (patch) | |
tree | fcf5371b245851b331fe7bc09b802fdf0e8293ac /.rubocop.yml | |
parent | a1a2ce4af4abddea64f909997c4a214dd2c04aa3 (diff) | |
parent | 4db6b8f0bb35fabf48c2d795ef3151810bb8251c (diff) | |
download | gitlab-ce-467dffa631e91e206f5835cc6d1fdb7bb3b112e0.tar.gz |
Merge branch '31362_decrease_cyclomatic_complexity_threshold_step4' into 'master'
Decrease Cyclomatic Complexity threshold to 13
See merge request !14152
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 4640681379a..dc97a61b4a6 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -643,7 +643,7 @@ Metrics/ClassLength: # of test cases needed to validate a method. Metrics/CyclomaticComplexity: Enabled: true - Max: 14 + Max: 13 # Limit lines to 80 characters. Metrics/LineLength: |