[flake8]
select = C,E,F,W,B,B9
ignore =
    # mccabe complexity
    C901

    # covered by black/usort
    E1
    E2
    E3
    E4
    E501
max-line-length = 88
per-file-ignores =
    __init__.py: F401
