[flake8]
ignore =
    # From root
    E121, E123, E126, E129, E133, E226, E241, E242, E704, W503, E402,
    # The following errors should be fixed eventually
    # line too long
    E501,
    # at least two spaces before inline comment
    E261,
    # continuation line under-indented for visual indent
    E128,
    # whitespace before ':'
    E203,
    # blank line at end of file
    W391,
    # multiple statements on one line
    E702,
    # closing bracket does not match visual indentation
    E124,
    # missing whitespace after ':'
    E231,
    # continuation line over-indented for visual indent
    E127,
    # too many leading '#' for block comment
    E266,
    # comment should start with '# '
    E262, E265,
    # continuation line unaligned for hanging indent
    E131,
    # continuation line missing indentation or outdented
    E122,
exclude =
    test/test_malformed.py
