app-MAIL-temp/.flake8

17 lines
267 B
INI

[flake8]
ignore =
E501,
# W503 is incompatible with PEP 8
W503
exclude =
.git,
__pycache__,
.pytest_cache,
static,
templates,
# migrations are generated by alembic
migrations,
docs
per-file-ignores =
__init__.py:F401