.rubocop.yml in preval-0.6.0 vs .rubocop.yml in preval-0.6.1

- old
+ new

@@ -1,13 +1,22 @@ AllCops: DisplayCopNames: true DisplayStyleGuide: true - TargetRubyVersion: 2.6 + TargetRubyVersion: 2.7 Exclude: + - '{tmp,vendor,yard}/**/*' - lib/preval/format.rb - - vendor/**/* +Gemspec/RequiredRubyVersion: + Enabled: false + +Layout/LineLength: + Max: 80 + +Lint/AmbiguousBlockAssociation: + Enabled: false + Layout/CommentIndentation: Enabled: false Lint/InheritException: Enabled: false @@ -22,10 +31,28 @@ Enabled: false Metrics/PerceivedComplexity: Enabled: false +Naming/RescuedExceptionsVariableName: + Enabled: false + Style/Documentation: Enabled: false +Style/FormatString: + EnforcedStyle: percent + +Style/FormatStringToken: + Enabled: false + Style/NumericPredicate: + Enabled: false + +Style/OptionalBooleanParameter: + Enabled: false + +Style/PerlBackrefs: + Enabled: false + +Style/SlicingWithRange: Enabled: false