setup.cfg 337 Bytes
Newer Older
1 2
[flake8]
max-complexity = 10
3 4 5 6 7 8 9

[pycodestyle]
exclude = .git,build,__pycache__,venv*,TEST*
max-line-length = 150
format = pylint
select = E711, E714, E501, W291
#ignore = W, E
10 11 12 13 14
ignore =
    W504,
    # W504 line break after binary operator
    S001,
    # S001 found module formatter
15 16
    E226,
    # E226 missing whitespace around operator