Tobias Pasquale
fix: Remove trailing whitespace and add end-of-file newlines
1589e06
raw
history blame
355 Bytes
[flake8]
max-line-length = 88
extend-ignore =
# E203: whitespace before ':' (conflicts with black)
E203,
# W503: line break before binary operator (conflicts with black)
W503
exclude =
venv,
.venv,
__pycache__,
.git,
.pytest_cache
per-file-ignores =
# Allow unused imports in __init__.py files
__init__.py:F401