X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6f0a393ef9191a70d9c5040ed35f6ee4ca33db8b..59e504520024e88571bc10c3147f055b2ba35640:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index f9eb73942..eae20fc7a 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,12 +1,41 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: - Exclude: - - '**/metadata.rb' +AllCops: + TargetRubyVersion: 2.5 -Style/SingleSpaceBeforeFirstArg: - Exclude: - - '**/metadata.rb' +ChefModernize/IncludingAptDefaultRecipe: + Enabled: false + +Layout/ExtraSpacing: + AllowForAlignment: true + +Layout/HeredocIndentation: + EnforcedStyle: squiggly + +Naming/MethodParameterName: + 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