From b38d2ae9f0ec79dbbca36dc9691bccf005e9689f Mon Sep 17 00:00:00 2001 From: Alison Hart Date: Wed, 14 Feb 2024 17:00:30 -0500 Subject: [PATCH] Add new ignores to tox template --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 9c8d8ec..b4af282 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ commands = [testenv:ruff] deps = ruff commands = - bash -c 'ruff check --exclude .tox --select ALL --ignore INP001,FA102,UP001,UP010,I001,FA100 -q extensions/eda/plugins' + bash -c 'ruff check --exclude .tox --select ALL --ignore INP001,FA102,UP001,UP010,I001,FA100,PLR0913,E501 -q extensions/eda/plugins' [testenv:darglint] deps = darglint @@ -24,4 +24,4 @@ commands = [testenv:pylint] deps = pylint commands = - bash -c 'find ./extensions/eda/plugins -name "*.py" -print0 | xargs -0 pylint --output-format=parseable -sn --disable R0801,E0401,C0103,R0913' \ No newline at end of file + bash -c 'find ./extensions/eda/plugins -name "*.py" -print0 | xargs -0 pylint --output-format=parseable -sn --disable R0801,E0401,C0103,R0913,R0902,R0903'