X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/f4d9298947b4e2f3740236d9fe51aec7e63ce31e..52c1f945d1efaeb817b4ea99ad2ce13dfa47c0b7:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 9d38fed38..5823b5132 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,3 +1,40 @@ -Style/SingleSpaceBeforeFirstArg: +inherit_from: .rubocop_todo.yml + +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/IfUnlessModifier: + Enabled: false + +Style/StringLiterals: + EnforcedStyle: double_quotes + +Style/SymbolArray: + EnforcedStyle: brackets