diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-04-07 17:13:57 +0200 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-04-11 10:27:13 +0200 |
commit | 0e8aaad51044bbbd5fc544c322d2a17d1c1ce22a (patch) | |
tree | 7c2ca15d2b947f3eaf3d4ee9b89c2cfb31ee8741 /.rubocop.yml | |
parent | b30ebdaa1a704f4e81e91153b1b33a4c1c1a5c12 (diff) | |
download | gitlab-ce-0e8aaad51044bbbd5fc544c322d2a17d1c1ce22a.tar.gz |
Decrease threshold for ABC Size metric in Rubocopcomplexity/descrease-abc-size-threshold
To 60.
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 71273ce6098..2fda0b03119 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -691,7 +691,7 @@ Style/ZeroLengthPredicate: # branches, and conditions. Metrics/AbcSize: Enabled: true - Max: 70 + Max: 60 # Avoid excessive block nesting. Metrics/BlockNesting: |