X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6f0a393ef9191a70d9c5040ed35f6ee4ca33db8b..8cb0dff3028536a89e82db81e5b908e6c037c1c7:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index f9eb73942..9d9ce40b0 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,12 +1,34 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: +AllCops: + TargetRubyVersion: 2.3 + +Layout/AlignParameters: Exclude: - '**/metadata.rb' -Style/SingleSpaceBeforeFirstArg: +Layout/ExtraSpacing: + AllowForAlignment: true + +Layout/IndentHeredoc: + EnforcedStyle: squiggly + +Naming/FileName: Exclude: - - '**/metadata.rb' + - 'cookbooks/trac/files/default/trac-authenticate' + - 'cookbooks/planet/files/default/replication-bin/replicate-changesets' + - 'cookbooks/*/templates/*/*.erb' + - 'hooks/*' + - 'roles/*.rb' + +Style/FrozenStringLiteralComment: + EnforcedStyle: never + +Style/HashSyntax: + EnforcedStyle: hash_rockets Style/StringLiterals: EnforcedStyle: double_quotes + +Style/SymbolArray: + EnforcedStyle: brackets