simple-login/.flake8

27 lines
488 B
Plaintext
Raw Normal View History

2020-12-06 10:25:32 +00:00
[flake8]
max-line-length = 88
2022-02-06 23:55:27 +00:00
select = C,E,F,W,B,B902,B903,B904,B950
extend-ignore =
# For black compatibility
E203,
E501,
# Ignore "f-string is missing placeholders"
2022-04-22 08:36:19 +00:00
F541,
# allow bare except
2022-04-22 08:39:01 +00:00
E722, B001
exclude =
2020-12-06 10:25:32 +00:00
.git,
__pycache__,
.pytest_cache,
.venv,
2020-12-06 10:25:32 +00:00
static,
templates,
# migrations are generated by alembic
migrations,
2022-01-26 14:22:37 +00:00
docs,
shell.py
2020-12-06 10:25:32 +00:00
per-file-ignores =
2020-12-06 21:33:55 +00:00
# ignore unused imports in __init__
__init__.py:F401