blob: d9f6a021a389ef886278180b3a0a12e2fb1ed341 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
[flake8]
max-line-length=100
ignore=ANN101,D107,W503
# Don't lint the venv or the CPython cache.
exclude=.venv,__pycache__
[tool.isort]
profile = "black"
multi_line_output = 5
|