.rubocop.yml in pagerduty-2.1.0 vs .rubocop.yml in pagerduty-2.1.1

- old
+ new

@@ -2,13 +2,18 @@ Exclude: - .bundle/**/* - bin/**/* - vendor/**/* -Style/AccessModifierIndentation: +Layout/AccessModifierIndentation: EnforcedStyle: outdent +Metrics/BlockLength: + Enabled: true + Exclude: + - spec/**/* + Style/BlockDelimiters: Exclude: - spec/**/* Style/Documentation: @@ -21,7 +26,13 @@ Enabled: false Style/StringLiterals: EnforcedStyle: double_quotes -Style/TrailingComma: +Style/TrailingCommaInArguments: + EnforcedStyleForMultiline: comma + +Style/TrailingCommaInArrayLiteral: + EnforcedStyleForMultiline: comma + +Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: comma