rubocop.yml: reduce linelength.

This commit is contained in:
Mike McQuaid 2018-10-13 18:45:39 -07:00
parent 9b84b2404a
commit 960207295b
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70

View File

@ -5,7 +5,7 @@ AllCops:
- '**/vendor/**/*'
DisplayCopNames: false
require:
require:
- ./Homebrew/rubocops.rb
- rubocop-rspec
@ -102,7 +102,7 @@ Metrics/ParameterLists:
# GitHub diff UI wraps beyond 118 characters (so that's the goal)
Metrics/LineLength:
Max: 189
Max: 170
# ignore manpage comments and long single-line strings
IgnoredPatterns: ['#: ', ' url "', ' mirror "', ' plist_options :']