From 960207295b6bc4e3b55b2badcdaaa85a75a50869 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 13 Oct 2018 18:45:39 -0700 Subject: [PATCH] rubocop.yml: reduce linelength. --- Library/.rubocop.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/.rubocop.yml b/Library/.rubocop.yml index 1185b589cc..36281a4d62 100644 --- a/Library/.rubocop.yml +++ b/Library/.rubocop.yml @@ -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 :']