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