]> git.openstreetmap.org Git - chef.git/blobdiff - .rubocop.yml
Disable the postgres JIT on tile servers
[chef.git] / .rubocop.yml
index f5d3d4c19bf1ac03803fe9c3112f14a2e765dc87..eae20fc7ad47f5b2b4930bba32bf7532e482557e 100644 (file)
@@ -1,42 +1,41 @@
 inherit_from: .rubocop_todo.yml
 
-require: rubocop-performance
-
 AllCops:
-  TargetRubyVersion: 2.3
+  TargetRubyVersion: 2.5
 
-Layout/AlignParameters:
-  Exclude:
-    - '**/metadata.rb'
+ChefModernize/IncludingAptDefaultRecipe:
+  Enabled: false
 
 Layout/ExtraSpacing:
   AllowForAlignment: true
 
-Layout/IndentHeredoc:
+Layout/HeredocIndentation:
   EnforcedStyle: squiggly
 
-Naming/FileName:
-  Exclude:
-    - 'cookbooks/trac/files/default/trac-authenticate'
-    - 'cookbooks/planet/files/default/replication-bin/replicate-changesets'
-    - 'cookbooks/*/templates/*/*.erb'
-    - 'hooks/*'
-    - 'roles/*.rb'
-
-Naming/UncommunicativeMethodParamName:
+Naming/MethodParameterName:
   Enabled: false
 
-Style/FrozenStringLiteralComment:
-  EnforcedStyle: never
-
 Style/HashSyntax:
   EnforcedStyle: hash_rockets
 
-Style/IfUnlessModifier:
-  Enabled: false
+Style/NumericPredicate:
+  EnforcedStyle: predicate
+
+Style/PercentLiteralDelimiters:
+  PreferredDelimiters:
+    '%i': '[]'
+    '%I': '[]'
+    '%w': '[]'
+    '%W': '[]'
 
 Style/StringLiterals:
   EnforcedStyle: double_quotes
 
 Style/SymbolArray:
   EnforcedStyle: brackets
+
+Style/TrailingCommaInArrayLiteral:
+  Enabled: false
+
+Style/TrailingCommaInHashLiteral:
+  Enabled: false