X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b74f737a0446d214020f517ca4edaa54a0921cf4..9a3a70287bba2b16c824de326971bb84fbb86c24:/.rubocop.yml?ds=sidebyside diff --git a/.rubocop.yml b/.rubocop.yml index f11a7d911..5823b5132 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,9 +1,40 @@ 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' + +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