diff options
| author | Mike McQuaid | 2017-10-27 08:45:58 +0100 |
|---|---|---|
| committer | GitHub | 2017-10-27 08:45:58 +0100 |
| commit | 32ce927cae5bb9462d88972119846d51c3447483 (patch) | |
| tree | 0924571c95cec76b9cddc94c5ae9bd20362e52ac /Library | |
| parent | 25d877151852136883390ca43103d74f1e0ecb97 (diff) | |
| parent | 1f259c27779aa657428eb476d1027de5a357445d (diff) | |
| download | brew-32ce927cae5bb9462d88972119846d51c3447483.tar.bz2 | |
Merge pull request #3372 from MikeMcQuaid/rubocop-length-taps
rubocop: disable length checks.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/.rubocop.yml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Library/.rubocop.yml b/Library/.rubocop.yml index 00956076a..2580668b4 100644 --- a/Library/.rubocop.yml +++ b/Library/.rubocop.yml @@ -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: |
