18 lines
268 B
Plaintext
18 lines
268 B
Plaintext
|
[flake8]
|
||
|
max-line-length = 100
|
||
|
ignore = D203, W503
|
||
|
per-file-ignores =
|
||
|
*/__init__.py: F401
|
||
|
exclude =
|
||
|
.git,
|
||
|
__pycache__,
|
||
|
docs/conf.py,
|
||
|
old,
|
||
|
build,
|
||
|
dist,
|
||
|
venv
|
||
|
max-complexity = 10
|
||
|
extend-ignore =
|
||
|
# See https://github.com/PyCQA/pycodestyle/issues/373
|
||
|
E203,
|