X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/be5f5bf83260f6fe16c253bb2069b34bd7421549..f4f77720ffdf749035e114f679d4ecd372198f98:/.rubocop.yml?ds=inline diff --git a/.rubocop.yml b/.rubocop.yml index b6fd6fcc3..5823b5132 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,10 +1,19 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: +AllCops: + TargetRubyVersion: 2.3 + +Layout/AlignParameters: Exclude: - '**/metadata.rb' -Style/FileName: +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' @@ -12,12 +21,20 @@ Style/FileName: - '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