X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/aff3fbe6802d93a8deae8fa2637589c8d28f6681..a12bd631f0eed60f140864d7fbc1b61b54d17b43:/.rubocop.yml diff --git a/.rubocop.yml b/.rubocop.yml index 2219d6ec6..07985407d 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,12 +1,18 @@ inherit_from: .rubocop_todo.yml -Style/AlignParameters: +AllCops: + TargetRubyVersion: 2.3 + +Layout/AlignParameters: Exclude: - '**/metadata.rb' -Style/ExtraSpacing: +Layout/ExtraSpacing: AllowForAlignment: true +Layout/IndentHeredoc: + EnforcedStyle: squiggly + Style/FileName: Exclude: - 'cookbooks/trac/files/default/trac-authenticate' @@ -15,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