X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/90a349e0bc558441e65156eabb585c578d93fbfd..57779fc16fc2ceb83e9b8d36bbdd23aaaa2c3291:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 07985407d..dfd51c01e 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -13,22 +13,33 @@ Layout/ExtraSpacing: Layout/IndentHeredoc: EnforcedStyle: squiggly -Style/FileName: - Exclude: - - 'cookbooks/trac/files/default/trac-authenticate' - - 'cookbooks/planet/files/default/replication-bin/replicate-changesets' - - 'cookbooks/*/templates/*/*.erb' - - 'hooks/*' - - 'roles/*.rb' - -Style/FrozenStringLiteralComment: - EnforcedStyle: never +Naming/UncommunicativeMethodParamName: + Enabled: false 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