[flake8]
max-line-length = 999
ignore =
    # Line too long (handled by max-line-length)
    E501
    # Function is too complex
    C901
max-complexity = 10
select = B,C,E,F,W,T4,B9