From 861a5f2d2fa5c03d1bc261dc83db7c2290556326 Mon Sep 17 00:00:00 2001 From: anish-mudaraddi Date: Tue, 24 Sep 2024 11:39:18 +0100 Subject: [PATCH] MAINT: disable too-many-arguments and too-many-positional-arguments The way stackstorm is designed means this is always going to be an issue --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 5e19091c6..91504a75a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -10,4 +10,4 @@ max-line-length=120 # R0801: Similar lines - Imports and method signatures will flag this, such as forwarding action args # C0116: Missing method docstring - Adds too much noise -disable=C0114,C0115,E0401,W0511,R0801,C0116 +disable=C0114,C0115,E0401,W0511,R0801,C0116,R0917,R0913