]> git.openstreetmap.org Git - chef.git/blobdiff - .rubocop.yml
Workaround jekyll-cache issue
[chef.git] / .rubocop.yml
index 07985407d1cf89d05b7de06242a8b9c020d7f26b..5db1a31045524667dabbea1a6aaf55863ffa3ed4 100644 (file)
@@ -3,32 +3,36 @@ inherit_from: .rubocop_todo.yml
 AllCops:
   TargetRubyVersion: 2.3
 
-Layout/AlignParameters:
-  Exclude:
-    - '**/metadata.rb'
-
 Layout/ExtraSpacing:
   AllowForAlignment: true
 
 Layout/IndentHeredoc:
   EnforcedStyle: squiggly
 
-Style/FileName:
-  Exclude:
-    - 'cookbooks/trac/files/default/trac-authenticate'
-    - 'cookbooks/planet/files/default/replication-bin/replicate-changesets'
-    - 'cookbooks/*/templates/*/*.erb'
-    - 'hooks/*'
-    - 'roles/*.rb'
-
-Style/FrozenStringLiteralComment:
-  EnforcedStyle: never
+Naming/UncommunicativeMethodParamName:
+  Enabled: false
 
 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