X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/f4d9298947b4e2f3740236d9fe51aec7e63ce31e..256c5a8a9a19677c107860975991897b685bebe6:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 9d38fed38..5db1a3104 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,3 +1,38 @@ -Style/SingleSpaceBeforeFirstArg: - Exclude: - - '**/metadata.rb' +inherit_from: .rubocop_todo.yml + +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