X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/07757c7769846d32a0bd74f343810bc4147869bc..256c5a8a9a19677c107860975991897b685bebe6:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 1f5c531bf..5db1a3104 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,22 +1,38 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: - Exclude: - - '**/metadata.rb' +AllCops: + TargetRubyVersion: 2.3 -Style/FileName: - Exclude: - - 'cookbooks/trac/files/default/trac-authenticate' - - 'cookbooks/planet/files/default/replication-bin/replicate-changesets' - - 'hooks/*' - - 'roles/*.rb' +Layout/ExtraSpacing: + AllowForAlignment: true + +Layout/IndentHeredoc: + EnforcedStyle: squiggly + +Naming/UncommunicativeMethodParamName: + Enabled: false Style/HashSyntax: EnforcedStyle: hash_rockets -Style/SingleSpaceBeforeFirstArg: - Exclude: - - '**/metadata.rb' +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