X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a9217ac515784c7f203e76b8885acb85a3934979..4ed87e86c638523d093bc97b32715c4c6a41a70d:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 23ca686a8..75bc2d9d8 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,47 @@ inherit_from: .rubocop_todo.yml -Style/SingleSpaceBeforeFirstArg: - Exclude: - - '**/metadata.rb' +AllCops: + TargetRubyVersion: 3.0 + +ChefModernize/IncludingAptDefaultRecipe: + Enabled: false + +Chef/Modernize/CronDFileOrTemplate: + Enabled: false + +Layout/ExtraSpacing: + AllowForAlignment: true + +Layout/HeredocIndentation: + Enabled: true + +Naming/MethodParameterName: + Enabled: false + +Style/CommandLiteral: + EnforcedStyle: percent_x + +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