]> git.openstreetmap.org Git - chef.git/blobdiff - .rubocop.yml
Attribution for lu_ngl_dtm
[chef.git] / .rubocop.yml
index 54dd4f715d12ea80b249066b3d2f0b1a39938034..eae20fc7ad47f5b2b4930bba32bf7532e482557e 100644 (file)
@@ -1,15 +1,41 @@
 inherit_from: .rubocop_todo.yml
 
-Style/AlignParameters:
-  Exclude:
-    - '**/metadata.rb'
+AllCops:
+  TargetRubyVersion: 2.5
+
+ChefModernize/IncludingAptDefaultRecipe:
+  Enabled: false
+
+Layout/ExtraSpacing:
+  AllowForAlignment: true
+
+Layout/HeredocIndentation:
+  EnforcedStyle: squiggly
+
+Naming/MethodParameterName:
+  Enabled: false
 
 Style/HashSyntax:
   EnforcedStyle: hash_rockets
 
-Style/SingleSpaceBeforeFirstArg:
-  Exclude:
-    - '**/metadata.rb'
+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