[flake8]
max-line-length = 120
ignore =
    # F541: f-string is missing placeholders
    F541
    # F405: 'xxx' may be undefined, or defined from star imports: xxx
    F405
    # missing whitespace after ','
    E231
    # missing whitespace around arithmetic operator
    E226
    # line break after binary operator
    W504
    # module level import not at top of file
    E402
