[flake8]
ignore =
    # E501: line too long (we rely on black for this)
    E501,
    # Whitespace before ':'. flake8 is wrong when inside slice expressions.
    E203,
    # Ambiguous variable names. Just following the QUIC-Fire naming convention for gridlists.
    E741,
    # Line break before binary operator. flake8 is wrong and goes against PEP8.
    W503,
    # missing whitespace after ':'
    E231,
    # f-string is missing placeholders
    F541
