2021-03-30 08:27:21 +02:00
|
|
|
[flake8]
|
2021-09-27 17:22:51 +02:00
|
|
|
# Only enable default tests (https://github.com/PyCQA/flake8/issues/790#issuecomment-812823398)
|
2023-03-05 16:52:06 +01:00
|
|
|
# DNE: DOES-NOT-EXIST
|
|
|
|
select = E,F,W,C90,DNE000
|
2024-11-13 22:26:03 +01:00
|
|
|
ignore = E121,E123,E126,E226,E24,E704,W503,W504,DNE000,E501,E261
|
2025-06-29 00:47:26 -06:00
|
|
|
exclude = .git,
|
|
|
|
__pycache__,
|
|
|
|
build,
|
|
|
|
dist,
|
|
|
|
*.egg,
|
|
|
|
*.egg-info,
|
|
|
|
*.eggs,
|
|
|
|
*.pyc,
|
|
|
|
*.pyo,
|
|
|
|
*.pyd,
|
|
|
|
.tox,
|
|
|
|
venv,
|
|
|
|
venv3,
|
|
|
|
.venv,
|
|
|
|
.venv3,
|
|
|
|
.env,
|
|
|
|
.mypy_cache,
|
|
|
|
.pytest_cache
|
2022-07-14 17:21:53 +02:00
|
|
|
extend-exclude = build
|