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

rubocop.yml: reduce tap maximum line length.

parent 8aa69736
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ Lint/EndAlignment:
Lint/ParenthesesAsGroupedExpression:
Enabled: false
# TODO: try to bring down all metrics maximums
# most metrics don't make sense to apply for formulae/taps
Metrics/AbcSize:
Enabled: false
......@@ -72,9 +72,10 @@ Metrics/CyclomaticComplexity:
Enabled: false
Metrics/LineLength:
Max: 324
# ignore manpage comments
IgnoredPatterns: ['#: ']
# 124 is the goal as GitHub diff UI wraps beyond that
Max: 190
# ignore manpage comments and long single-line strings
IgnoredPatterns: ['#: ', ' url "', ' mirror "', ' plist_options :']
Metrics/MethodLength:
Enabled: false
......
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