28 lines
589 B
INI
28 lines
589 B
INI
[flake8]
|
|
max-line-length = 88
|
|
exclude =
|
|
.git,
|
|
__pycache__,
|
|
build,
|
|
dist,
|
|
.venv,
|
|
venv,
|
|
aniworld,
|
|
migrations,
|
|
.pytest_cache,
|
|
.mypy_cache,
|
|
.coverage,
|
|
htmlcov
|
|
extend-ignore =
|
|
# E203: whitespace before ':' (conflicts with black)
|
|
E203,
|
|
# W503: line break before binary operator (conflicts with black)
|
|
W503,
|
|
# E501: line too long (handled by black)
|
|
E501
|
|
per-file-ignores =
|
|
__init__.py:F401
|
|
tests/*:F401,F811
|
|
max-complexity = 10
|
|
docstring-convention = google
|
|
import-order-style = google |