From 277551250778753356d2334118a7f9a12395453c Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 9 Oct 2024 11:12:40 +0200 Subject: [PATCH] pylint options --- scripts/check-syntax.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/check-syntax.sh b/scripts/check-syntax.sh index 90985b7..e97be17 100755 --- a/scripts/check-syntax.sh +++ b/scripts/check-syntax.sh @@ -81,6 +81,7 @@ echo "checking dotdrop with pylint" # R0904: too-many-public-methods # R0917: too-many-positional-arguments pylint \ + --disable=W0012 \ --disable=R0902 \ --disable=R0913 \ --disable=R0903 \ @@ -119,6 +120,7 @@ echo "checking other python scripts with pylint" find . -name "*.py" -not -path "./dotdrop/*" -not -regex "\./\.?v?env/.*" | while read -r script; do echo "checking ${script}" pylint -sn \ + --disable=W0012 \ --disable=R0914 \ --disable=R0915 \ --disable=R0913 \