https://github.com/Doist/bitmapist
Raw File
Tip revision: bf4df248d2cefa24d642c9096b367613d921983c authored by Janusz Gregorczyk on 07 March 2024, 19:00:54 UTC
Merge pull request #62 from Doist/proxi/add-types
Tip revision: bf4df24
.flake8
[flake8]
# Like Black.
max-line-length = 88

extend-ignore =
    # Whitespace before ':': Incompatible with Black
    E203,
    # Line break occurred before a binary operator: Incompatible with Black, ref.: https://black.readthedocs.io/en/stable/the_black_code_style.html
    W503,
    # Line too long: Already covered by Black
    E501,
    # is too complex: declared bankrupcy.
    C901,
    # we want to use lambda sometimes
    E731
back to top