[flake8]
ignore =
    # missing whitespace around arithmetic operator
    E226,
    # do not use bare except, specify exception instead
    E722,
    # line break before binary operator
    W503,
    # line too long (82 > 79 characters)
    E501,
    # ‘from module import *’ used; unable to detect undefined names
    F403,
