ci(gitlab-ci): add `rubocop` linter (with `allow_failure`) [skip ci]
[arvados-formula.git] / .rubocop.yml
index 3b6c0b8b2ee13749cf1f706a53fc79b254bb0ed4..7fd75ac0cd706430673dd6abc6bffd6497620436 100644 (file)
@@ -6,9 +6,11 @@ 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
 
 # Any offenses that should be fixed, e.g. collected via. `rubocop --auto-gen-config`
-# <REMOVEME
-Metrics/BlockLength:
-  Max: 36
-# REMOVEME>