X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/f4d9298947b4e2f3740236d9fe51aec7e63ce31e..f6cb433b825720b178c1452fe7b829437a11fa8c:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 9d38fed38..12d060a1b 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,3 +1,41 @@ -Style/SingleSpaceBeforeFirstArg: - Exclude: - - '**/metadata.rb' +inherit_from: .rubocop_todo.yml + +AllCops: + TargetRubyVersion: 2.3 + +ChefModernize/IncludingAptDefaultRecipe: + Enabled: false + +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