app-MAIL-temp/.flake8

18 lines
306 B
Plaintext
Raw Normal View History

2020-12-06 11:25:32 +01:00
[flake8]
ignore =
E501,
2020-12-06 22:31:42 +01:00
# W503 & E203 are not PEP 8 compliant and conflicts with black
W503,
E203
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 =
__init__.py:F401