X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/aff3fbe6802d93a8deae8fa2637589c8d28f6681..ec0f5d5dc7af30acfc7351595a21aa9fcc977c5b:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 2219d6ec6..5db1a3104 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,26 +1,38 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: - Exclude: - - '**/metadata.rb' +AllCops: + TargetRubyVersion: 2.3 -Style/ExtraSpacing: +Layout/ExtraSpacing: AllowForAlignment: true -Style/FileName: - Exclude: - - 'cookbooks/trac/files/default/trac-authenticate' - - 'cookbooks/planet/files/default/replication-bin/replicate-changesets' - - 'cookbooks/*/templates/*/*.erb' - - 'hooks/*' - - 'roles/*.rb' +Layout/IndentHeredoc: + EnforcedStyle: squiggly + +Naming/UncommunicativeMethodParamName: + Enabled: false Style/HashSyntax: EnforcedStyle: hash_rockets -Style/SingleSpaceBeforeFirstArg: - Exclude: - - '**/metadata.rb' +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