pwdtools/tox.ini
Ari Archer 141b97eaac
Update information
Signed-off-by: Ari Archer <ari@ari.lt>
2025-01-02 11:43:30 +02:00

35 lines
881 B
INI

[flake8]
max-line-length = 88
[pycodestyle]
max-line-length = 88
[isort]
line_length = 88
known_first_party = ["pwdtools"]
[testenv]
deps =
black
mypy
isort
flake8
pyright
commands =
black --check pwdtools/
mypy pwdtools/ --warn-redundant-casts --warn-unused-ignores \
--no-warn-no-return --warn-unreachable --strict-equality \
--ignore-missing-imports --warn-unused-configs \
--disallow-untyped-calls --disallow-untyped-defs \
--disallow-incomplete-defs --check-untyped-defs \
--disallow-untyped-decorators --pretty --show-traceback \
--no-warn-unused-ignores --namespace-packages \
--python-version 3.9
isort -c pwdtools/
flake8 --max-line-length 88 \
--ignore=W503 \
--select=E402,E9,F63,F7,F82,F401 \
--show-source \
pwdtools/
pyright pwdtools/