]> git.openstreetmap.org Git - chef.git/blobdiff - .rubocop.yml
nominatim: location of config file for nominatim-ui has changed
[chef.git] / .rubocop.yml
index 23ca686a814f11f40ef35a389f9394d47a32cc32..80bd36dad256c088960a696f3b42a198146448c8 100644 (file)
@@ -1,5 +1,44 @@
 inherit_from: .rubocop_todo.yml
 
-Style/SingleSpaceBeforeFirstArg:
-  Exclude:
-    - '**/metadata.rb'
+AllCops:
+  TargetRubyVersion: 2.7
+
+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