Datasets:
File size: 475 Bytes
a824956 |
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 |
[flake8]
max-line-length = 115
ignore =
# these rules don't play well with black
# whitespace before :
E203
# line break before binary operator
W503
# line too long, who cares?
E501
exclude =
.venv
.git
__pycache__
docs/build
dist
.mypy_cache
pretrain_data
per-file-ignores =
# __init__.py files are allowed to have unused imports and lines-too-long
*/__init__.py:F401,F403
*/**/**/__init__.py:F401,E501
|