21 lines
389 B
INI
21 lines
389 B
INI
[flake8]
|
|
max-line-length = 160
|
|
exclude = .tox,.git,log,debug,venv
|
|
ignore = D100,D101,D102,D103,E251
|
|
|
|
[pycodestyle]
|
|
max-line-length = 160
|
|
exclude = .tox,.git,log,debug,venv
|
|
|
|
[mypy]
|
|
python_version = 3.9
|
|
check_untyped_defs = True
|
|
ignore_missing_imports = False
|
|
warn_unused_ignores = True
|
|
warn_redundant_casts = True
|
|
warn_unused_configs = True
|
|
|
|
[isort]
|
|
multi_line_output = 2
|
|
line_length = 160
|