mirror of
https://github.com/simple-login/app.git
synced 2024-11-11 01:42:54 +08:00
25 lines
No EOL
492 B
INI
25 lines
No EOL
492 B
INI
[flake8]
|
|
ignore =
|
|
# line length is handled by black
|
|
E501,
|
|
# W503 & E203 are not PEP 8 compliant and conflicts with black
|
|
W503,
|
|
E203,
|
|
# Ignore "f-string is missing placeholders"
|
|
F541,
|
|
# allow bare "except"
|
|
E722
|
|
exclude =
|
|
.git,
|
|
__pycache__,
|
|
.pytest_cache,
|
|
static,
|
|
templates,
|
|
# migrations are generated by alembic
|
|
migrations,
|
|
docs,
|
|
shell.py
|
|
|
|
per-file-ignores =
|
|
# ignore unused imports in __init__
|
|
__init__.py:F401 |