]> git.openstreetmap.org Git - chef.git/blobdiff - .rubocop.yml
Remove role for longma
[chef.git] / .rubocop.yml
index 9d9ce40b0ac2f6b99f34911552a1f00b999a63e4..80bd36dad256c088960a696f3b42a198146448c8 100644 (file)
@@ -1,34 +1,44 @@
 inherit_from: .rubocop_todo.yml
 
 AllCops:
-  TargetRubyVersion: 2.3
+  TargetRubyVersion: 2.7
 
-Layout/AlignParameters:
-  Exclude:
-    - '**/metadata.rb'
+ChefModernize/IncludingAptDefaultRecipe:
+  Enabled: false
 
 Layout/ExtraSpacing:
   AllowForAlignment: true
 
-Layout/IndentHeredoc:
-  EnforcedStyle: squiggly
+Layout/HeredocIndentation:
+  Enabled: true
 
-Naming/FileName:
-  Exclude:
-    - 'cookbooks/trac/files/default/trac-authenticate'
-    - 'cookbooks/planet/files/default/replication-bin/replicate-changesets'
-    - 'cookbooks/*/templates/*/*.erb'
-    - 'hooks/*'
-    - 'roles/*.rb'
+Naming/MethodParameterName:
+  Enabled: false
 
-Style/FrozenStringLiteralComment:
-  EnforcedStyle: never
+Style/CommandLiteral:
+  EnforcedStyle: percent_x
 
 Style/HashSyntax:
   EnforcedStyle: hash_rockets
 
+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