X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/20eed1b438a2f662a9e64c50dc2be36ccace6302..787431aa384f07d403f422ca64447e8bdf794e3f:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 54dd4f715..5db1a3104 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,15 +1,38 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: - Exclude: - - '**/metadata.rb' +AllCops: + TargetRubyVersion: 2.3 + +Layout/ExtraSpacing: + AllowForAlignment: true + +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