.rubocop.yml in seo_cache-0.11.0 vs .rubocop.yml in seo_cache-0.12.0

- old
+ new

@@ -1,39 +1,45 @@ AllCops: - TargetRubyVersion: 2.5 + TargetRubyVersion: 2.6 Documentation: Enabled: false LineLength: Enabled: false Bundler/OrderedGems: Enabled: false -Layout/AlignHash: +Layout/CaseIndentation: Enabled: false -Layout/AlignParameters: +Layout/CommentIndentation: Enabled: false -Layout/CaseIndentation: +Layout/EmptyLinesAroundClassBody: Enabled: false -Layout/EmptyLinesAroundClassBody: +Layout/EmptyLinesAroundModuleBody: Enabled: false Layout/ExtraSpacing: Enabled: false AllowForAlignment: true -Layout/IndentFirstHashElement: +Layout/FirstArgumentIndentation: Enabled: false -Layout/IndentFirstArgument: +Layout/FirstArrayElementIndentation: Enabled: false +Layout/FirstHashElementIndentation: + Enabled: false + +Layout/HashAlignment: + Enabled: false + Layout/LeadingCommentSpace: Enabled: false Layout/MultilineBlockLayout: Enabled: false @@ -45,10 +51,13 @@ Enabled: false Layout/MultilineOperationIndentation: Enabled: false +Layout/ParameterAlignment: + Enabled: false + Layout/SpaceAroundOperators: Enabled: false Layout/SpaceInLambdaLiteral: Enabled: false @@ -78,19 +87,53 @@ Metrics/MethodLength: CountComments: false # count full line comments? Max: 120 +Metrics/ModuleLength: + CountComments: false # count full line comments? + Max: 350 + Metrics/ParameterLists: Max: 7 Metrics/PerceivedComplexity: Enabled: false +Naming/RescuedExceptionsVariableName: + Enabled: false + +Rails/DynamicFindBy: + Enabled: false + +Rails/FindBy: + Enabled: false + +Rails/HasAndBelongsToMany: + Enabled: false + +Rails/HelperInstanceVariable: + Enabled: false + Rails/OutputSafety: Enabled: false +Rails/UnknownEnv: + Enabled: false + +Rails/Validation: + Enabled: false + +RSpec/ExampleLength: + Max: 20 + +RSpec/MultipleExpectations: + Max: 10 + Style/AsciiComments: + Enabled: false + +Style/ClassAndModuleChildren: Enabled: false Style/ColonMethodCall: Enabled: false