X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/12ef4c375bea3769624567cf93275f4c09d180a4..a74b0487fe7b9ca6d7220fa2d31bb188e10aa838:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 5823b5132..eae20fc7a 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,40 +1,41 @@ inherit_from: .rubocop_todo.yml AllCops: - TargetRubyVersion: 2.3 + TargetRubyVersion: 2.5 -Layout/AlignParameters: - Exclude: - - '**/metadata.rb' +ChefModernize/IncludingAptDefaultRecipe: + Enabled: false Layout/ExtraSpacing: AllowForAlignment: true -Layout/IndentHeredoc: +Layout/HeredocIndentation: EnforcedStyle: squiggly -Naming/FileName: - Exclude: - - 'cookbooks/trac/files/default/trac-authenticate' - - 'cookbooks/planet/files/default/replication-bin/replicate-changesets' - - 'cookbooks/*/templates/*/*.erb' - - 'hooks/*' - - 'roles/*.rb' - -Naming/UncommunicativeMethodParamName: +Naming/MethodParameterName: Enabled: false -Style/FrozenStringLiteralComment: - EnforcedStyle: never - Style/HashSyntax: EnforcedStyle: hash_rockets -Style/IfUnlessModifier: - Enabled: false +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