X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ae8d9efeb3ee5bc631f2e921688da8cb47e576b2..b404f84fa994ff287428c84cfcba747dee0e026f:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index f5d3d4c19..80bd36dad 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,42 +1,44 @@ inherit_from: .rubocop_todo.yml -require: rubocop-performance - AllCops: - TargetRubyVersion: 2.3 + TargetRubyVersion: 2.7 -Layout/AlignParameters: - Exclude: - - '**/metadata.rb' +ChefModernize/IncludingAptDefaultRecipe: + Enabled: false Layout/ExtraSpacing: AllowForAlignment: true -Layout/IndentHeredoc: - EnforcedStyle: squiggly - -Naming/FileName: - Exclude: - - 'cookbooks/trac/files/default/trac-authenticate' - - 'cookbooks/planet/files/default/replication-bin/replicate-changesets' - - 'cookbooks/*/templates/*/*.erb' - - 'hooks/*' - - 'roles/*.rb' +Layout/HeredocIndentation: + Enabled: true -Naming/UncommunicativeMethodParamName: +Naming/MethodParameterName: Enabled: false -Style/FrozenStringLiteralComment: - EnforcedStyle: never +Style/CommandLiteral: + EnforcedStyle: percent_x Style/HashSyntax: EnforcedStyle: hash_rockets -Style/IfUnlessModifier: - Enabled: false +Style/NumericPredicate: + EnforcedStyle: predicate + +Style/PercentLiteralDelimiters: + PreferredDelimiters: + '%i': '[]' + '%I': '[]' + '%w': '[]' + '%W': '[]' Style/StringLiterals: EnforcedStyle: double_quotes Style/SymbolArray: EnforcedStyle: brackets + +Style/TrailingCommaInArrayLiteral: + Enabled: false + +Style/TrailingCommaInHashLiteral: + Enabled: false