12 lines
328 B
INI
12 lines
328 B
INI
[flake8]
|
|
count = True
|
|
# Several of the following could be autofixed or improved by running the code through psf/black
|
|
ignore = E722,W191,W503
|
|
max-complexity = 40
|
|
max-line-length = 160
|
|
show-source = True
|
|
statistics = True
|
|
builtins = _
|
|
per-file-ignores = __init__.py:E128,F401
|
|
exclude = .git,__pycache__,build,docs,actions-runner
|