chore(rubocop): allow use of `YAML.load` for `_mapdata.rb` [skip ci]
[arvados-formula.git] / .rubocop.yml
index 7c701f5eb7c3adc2e1090ebcd78570bc59159cc8..9367e99c44f3fadbabb388b0725c8b75bb7e5ece 100644 (file)
@@ -6,6 +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`
-