13 lines
173 B
INI
13 lines
173 B
INI
[flake8]
|
|
max-line-length = 120
|
|
exclude =
|
|
.git,
|
|
__pycache__,
|
|
.pytest_cache,
|
|
venv
|
|
ignore = E501, F401
|
|
format = pylint
|
|
show-source = True
|
|
max-complexity = 10
|
|
|