]> git.openstreetmap.org Git - chef.git/blobdiff - .rubocop.yml
nginx: add libwww-perl req by munin nginx
[chef.git] / .rubocop.yml
index b6fd6fcc311875c55c8412b766d431fa719dd74a..5db1a31045524667dabbea1a6aaf55863ffa3ed4 100644 (file)
@@ -1,23 +1,38 @@
 inherit_from: .rubocop_todo.yml
 
-Style/AlignParameters:
-  Exclude:
-    - '**/metadata.rb'
-
-Style/FileName:
-  Exclude:
-    - 'cookbooks/trac/files/default/trac-authenticate'
-    - 'cookbooks/planet/files/default/replication-bin/replicate-changesets'
-    - 'cookbooks/*/templates/*/*.erb'
-    - 'hooks/*'
-    - 'roles/*.rb'
+AllCops:
+  TargetRubyVersion: 2.3
+
+Layout/ExtraSpacing:
+  AllowForAlignment: true
+
+Layout/IndentHeredoc:
+  EnforcedStyle: squiggly
+
+Naming/UncommunicativeMethodParamName:
+  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