X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/be5f5bf83260f6fe16c253bb2069b34bd7421549..a12bd631f0eed60f140864d7fbc1b61b54d17b43:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index b6fd6fcc3..07985407d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,9 +1,18 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: +AllCops: + TargetRubyVersion: 2.3 + +Layout/AlignParameters: Exclude: - '**/metadata.rb' +Layout/ExtraSpacing: + AllowForAlignment: true + +Layout/IndentHeredoc: + EnforcedStyle: squiggly + Style/FileName: Exclude: - 'cookbooks/trac/files/default/trac-authenticate' @@ -12,12 +21,14 @@ Style/FileName: - 'hooks/*' - 'roles/*.rb' +Style/FrozenStringLiteralComment: + EnforcedStyle: never + Style/HashSyntax: EnforcedStyle: hash_rockets -Style/SingleSpaceBeforeFirstArg: - Exclude: - - '**/metadata.rb' - Style/StringLiterals: EnforcedStyle: double_quotes + +Style/SymbolArray: + EnforcedStyle: brackets