File size: 276 Bytes
acc4ffe |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
[flake8]
exclude =
venv
.venv
__pycache__
notebooks
# Recommend matching the black line length (default 88),
# rather than using the flake8 default of 79:
max-line-length = 88
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
|