diff options
author | Maxim Rydkin <maks.rydkin@gmail.com> | 2017-09-12 17:02:11 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2017-09-12 17:02:11 +0000 |
commit | 4db6b8f0bb35fabf48c2d795ef3151810bb8251c (patch) | |
tree | fcf5371b245851b331fe7bc09b802fdf0e8293ac /.rubocop.yml | |
parent | a1a2ce4af4abddea64f909997c4a214dd2c04aa3 (diff) | |
download | gitlab-ce-4db6b8f0bb35fabf48c2d795ef3151810bb8251c.tar.gz |
Decrease Cyclomatic Complexity threshold to 13
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: |