[flake8]
ignore =
    E402, # module level import not at top of file
    E722, # do not use bare except, specify exception instead
    F403, # ‘from module import *’ used; unable to detect undefined names
    W503, # line break before binary operator
    W504, # line break after binary operator
    D400,
    D401,
    D403,
    W292,
    D100,
    D104,
    D401,
max-complexity = 90
max-line-length = 90