X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/5b10d6ad76c00d6379546f9ed4d84a1d3e4430a9..207e653d22850b200e5dd83f2219e0c9021b69dd:/.rubocop.yml?ds=sidebyside diff --git a/.rubocop.yml b/.rubocop.yml index f5d3d4c19..5db1a3104 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,42 +1,38 @@ inherit_from: .rubocop_todo.yml -require: rubocop-performance - AllCops: TargetRubyVersion: 2.3 -Layout/AlignParameters: - Exclude: - - '**/metadata.rb' - 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' - Naming/UncommunicativeMethodParamName: Enabled: false -Style/FrozenStringLiteralComment: - EnforcedStyle: never - 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