2020-12-06 18:25:32 +08:00
|
|
|
[flake8]
|
|
|
|
ignore =
|
2020-12-07 05:33:55 +08:00
|
|
|
# line length is handled by black
|
2020-12-06 18:25:32 +08:00
|
|
|
E501,
|
2020-12-07 05:31:42 +08:00
|
|
|
# W503 & E203 are not PEP 8 compliant and conflicts with black
|
|
|
|
W503,
|
2021-01-11 17:28:29 +08:00
|
|
|
E203,
|
|
|
|
# Ignore "f-string is missing placeholders"
|
2021-09-21 17:08:27 +08:00
|
|
|
F541,
|
|
|
|
# allow bare "except"
|
|
|
|
E722
|
2020-12-06 18:25:32 +08:00
|
|
|
exclude =
|
|
|
|
.git,
|
|
|
|
__pycache__,
|
|
|
|
.pytest_cache,
|
|
|
|
static,
|
|
|
|
templates,
|
|
|
|
# migrations are generated by alembic
|
|
|
|
migrations,
|
|
|
|
docs
|
|
|
|
|
|
|
|
per-file-ignores =
|
2020-12-07 05:33:55 +08:00
|
|
|
# ignore unused imports in __init__
|
2020-12-06 18:25:32 +08:00
|
|
|
__init__.py:F401
|