diff --git a/.pylintrc b/.pylintrc index 91504a75..0a57179e 100644 --- a/.pylintrc +++ b/.pylintrc @@ -9,5 +9,8 @@ max-line-length=120 # W0511: TODOs they're well....to do later # R0801: Similar lines - Imports and method signatures will flag this, such as forwarding action args # C0116: Missing method docstring - Adds too much noise +# R0917: Too many positional arguments - This will always be a problem for the functions in the workflow module + - due to the way stackstorm is designed +# R0913: Too many arguments - same as above disable=C0114,C0115,E0401,W0511,R0801,C0116,R0917,R0913