setup flake8

This commit is contained in:
Renaud Boyer 2020-12-06 11:25:32 +01:00
parent 5a24c7e2ae
commit 20b54ca248
1 changed files with 17 additions and 0 deletions

17
.flake8 Normal file
View File

@ -0,0 +1,17 @@
[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