Skip to content

Commit

Permalink
Adding linter ignores for EDA linters
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
alisonlhart committed Nov 30, 2023
1 parent 2225280 commit 3736a93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions galaxy_importer/ansible_test/container/eda/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires =

[testenv:ruff]
deps = ruff
commands = - ruff check --select ALL --ignore INP001 -q {posargs}/extensions/eda/plugins
commands = - ruff check --select ALL --ignore INP001,FA102,UP001,UP010,I001,FA100 -q {posargs}/extensions/eda/plugins


[testenv:darglint]
Expand All @@ -17,8 +17,8 @@ commands = - darglint -s numpy -z full {posargs}/extensions/eda/plugins

[testenv:pylint-event-source]
deps = pylint
commands = - pylint {posargs}/extensions/eda/plugins/event_source/*.py --output-format=parseable -sn --disable R0801
commands = - pylint {posargs}/extensions/eda/plugins/event_source/*.py --output-format=parseable -sn --disable R0801,E0401,C0103,R0913

[testenv:pylint-event-filter]
deps = pylint
commands = - pylint {posargs}/extensions/eda/plugins/event_filter/*.py --output-format=parseable -sn --disable R0801
commands = - pylint {posargs}/extensions/eda/plugins/event_filter/*.py --output-format=parseable -sn --disable R0801,E0401,C0103,R0913

0 comments on commit 3736a93

Please sign in to comment.