X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a9217ac515784c7f203e76b8885acb85a3934979..ec0f5d5dc7af30acfc7351595a21aa9fcc977c5b:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 23ca686a8..5db1a3104 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,38 @@ inherit_from: .rubocop_todo.yml -Style/SingleSpaceBeforeFirstArg: - 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/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