Skip to content
Snippets Groups Projects
Commit 1f259c27 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

rubocop: disable length checks.

We should keep these enabled for Homebrew/brew but for taps these just
end up being annoying and making `brew style` fail for little benefit
parent 4d02b96c
No related branches found
No related tags found
No related merge requests found
......@@ -60,16 +60,16 @@ Lint/ParenthesesAsGroupedExpression:
# TODO: try to bring down all metrics maximums
Metrics/AbcSize:
Max: 250
Enabled: false
Metrics/BlockLength:
Max: 144
Enabled: false
Metrics/ClassLength:
Max: 589
Enabled: false
Metrics/CyclomaticComplexity:
Max: 75
Enabled: false
Metrics/LineLength:
Max: 324
......@@ -77,17 +77,16 @@ Metrics/LineLength:
IgnoredPatterns: ['#: ']
Metrics/MethodLength:
Max: 222
Enabled: false
Metrics/ModuleLength:
CountComments: false
Max: 367
Enabled: false
Metrics/ParameterLists:
CountKeywordArgs: false
Metrics/PerceivedComplexity:
Max: 100
Enabled: false
# makes code less readable for minor performance increases
Performance/Caller:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment