
[flake8]
max-line-length = 100
ignore =
    # too complex (fail on this in future)
    C901,
    # module level import not at top of file
    E402,
    # whitespace before ':'
    E203,
    # line break before binary operator
    W503,
    # line break after binary operator
    W504,
    # Missing newline between import groups.
    I201,
    # ambiguous variable name
    E741,

application_import_names = scitree
