]> git.openstreetmap.org Git - chef.git/blobdiff - .rubocop.yml
nominatim: location of config file for nominatim-ui has changed
[chef.git] / .rubocop.yml
index f9eb7394239a2bdf5e00a9347398ce61e5a1de00..80bd36dad256c088960a696f3b42a198146448c8 100644 (file)
@@ -1,12 +1,44 @@
 inherit_from: .rubocop_todo.yml
 
-Style/AlignParameters:
-  Exclude:
-    - '**/metadata.rb'
+AllCops:
+  TargetRubyVersion: 2.7
 
-Style/SingleSpaceBeforeFirstArg:
-  Exclude:
-    - '**/metadata.rb'
+ChefModernize/IncludingAptDefaultRecipe:
+  Enabled: false
+
+Layout/ExtraSpacing:
+  AllowForAlignment: true
+
+Layout/HeredocIndentation:
+  Enabled: true
+
+Naming/MethodParameterName:
+  Enabled: false
+
+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