chore(rubocop): allow use of `YAML.load` for `_mapdata.rb` [skip ci]
[arvados-formula.git] / .rubocop.yml
index 3b6c0b8b2ee13749cf1f706a53fc79b254bb0ed4..9367e99c44f3fadbabb388b0725c8b75bb7e5ece 100644 (file)
@@ -6,9 +6,14 @@ Layout/LineLength:
   # Increase from default of `80`
   # Based on https://github.com/PyCQA/flake8-bugbear#opinionated-warnings (`B950`)
   Max: 88
+Metrics/BlockLength:
+  ExcludedMethods:
+    - control
+    - describe
+  # Increase from default of `25`
+  Max: 30
+Security/YAMLLoad:
+  Exclude:
+    - test/integration/**/_mapdata.rb
 
 # Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`
-# <REMOVEME
-Metrics/BlockLength:
-  Max: 36
-# REMOVEME>