X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/20eed1b438a2f662a9e64c50dc2be36ccace6302..3a73476b53d7bfbab341d51fd88ff513ef4c24ce:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 54dd4f715..5823b5132 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,15 +1,40 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: +AllCops: + TargetRubyVersion: 2.3 + +Layout/AlignParameters: Exclude: - '**/metadata.rb' +Layout/ExtraSpacing: + AllowForAlignment: true + +Layout/IndentHeredoc: + 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: + Enabled: false + +Style/FrozenStringLiteralComment: + EnforcedStyle: never + Style/HashSyntax: EnforcedStyle: hash_rockets -Style/SingleSpaceBeforeFirstArg: - Exclude: - - '**/metadata.rb' +Style/IfUnlessModifier: + Enabled: false Style/StringLiterals: EnforcedStyle: double_quotes + +Style/SymbolArray: + EnforcedStyle: brackets