X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/aff3fbe6802d93a8deae8fa2637589c8d28f6681..27fd49876db529db0913497ff549aaeb3e39b58f:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 2219d6ec6..5823b5132 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,13 +1,19 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: +AllCops: + TargetRubyVersion: 2.3 + +Layout/AlignParameters: Exclude: - '**/metadata.rb' -Style/ExtraSpacing: +Layout/ExtraSpacing: AllowForAlignment: true -Style/FileName: +Layout/IndentHeredoc: + EnforcedStyle: squiggly + +Naming/FileName: Exclude: - 'cookbooks/trac/files/default/trac-authenticate' - 'cookbooks/planet/files/default/replication-bin/replicate-changesets' @@ -15,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