https://github.com/open2c/cooltools
Raw File
Tip revision: 4eb7a3b3453e0f0420508f28c4df1635b0955f4d authored by gfudenberg on 26 October 2022, 22:14:20 UTC
remove-cytoolz
Tip revision: 4eb7a3b
.flake8
[flake8]
exclude =
    __init__.py
    __main__.py

max-line-length = 80
ignore =
    E203  # whitespace before ':'
    E266  # too many leading '#' for block comment
    E501  # line too long
    W503  # line break before binary operator
select =
    C  # mccabe complexity
    E  # pycodestyle
    F  # pyflakes error
    W  # pyflakes warning
    B  # bugbear
    B950  # line exceeds max-line-length + 10%
back to top