mirror of
https://github.com/ModOrganizer2/modorganizer-basic_games.git
synced 2026-07-27 14:07:29 -07:00
27 lines
407 B
INI
27 lines
407 B
INI
[flake8]
|
|
# Use black line length:
|
|
max-line-length = 88
|
|
extend-ignore =
|
|
# See https://github.com/PyCQA/pycodestyle/issues/373
|
|
E203, E266
|
|
|
|
[mypy]
|
|
warn_return_any = True
|
|
warn_unused_configs = True
|
|
|
|
[tox:tox]
|
|
skipsdist = true
|
|
envlist = py38-lint
|
|
|
|
[testenv:py38-lint]
|
|
skip_install = true
|
|
deps =
|
|
black
|
|
flake8
|
|
flake8-black
|
|
mypy
|
|
commands =
|
|
black --check --diff .
|
|
flake8 .
|
|
mypy .
|