File size: 429 Bytes
b66240d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
[flake8]
max-line-length = 100
max-complexity = 15
extend-ignore = E203, E266, E501, W503
exclude =
.git,
__pycache__,
.venv,
venv,
build,
dist,
*.egg-info,
.mypy_cache,
.pytest_cache,
data,
logs,
node_modules
# Error codes to always check
select = E,W,F,C,N
# Per-file ignores
per-file-ignores =
__init__.py:F401
tests/*:D
# Count errors
count = True
statistics = True
|