14 lines
284 B
INI
14 lines
284 B
INI
[flake8]
|
|
max-line-length = 120
|
|
exclude = .git,venv
|
|
ignore = E203,E262,E265,E501,E722,E741,W503,W605,F405,F841,F401
|
|
|
|
[mypy]
|
|
python_version = 3.11
|
|
check_untyped_defs = True
|
|
ignore_missing_imports = True
|
|
warn_unused_ignores = True
|
|
warn_redundant_casts = True
|
|
warn_unused_configs = True
|
|
|