]> git.openstreetmap.org Git - chef.git/blobdiff - .rubocop.yml
pinning master, will run tests in another branch
[chef.git] / .rubocop.yml
index 2219d6ec67ec53c4270a3eac6b94b8996b644936..f5d3d4c19bf1ac03803fe9c3112f14a2e765dc87 100644 (file)
@@ -1,13 +1,21 @@
 inherit_from: .rubocop_todo.yml
 
-Style/AlignParameters:
+require: rubocop-performance
+
+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 +23,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