[flake8]
select = B,C,E,F,P,W,B9
max-line-length = 80
max-complexity = 12

# Main Explanation Docs: https://github.com/grantmcconnaughey/Flake8Rules
# Added C901 as we don't currently satisfy the complexity rules, we should fix this
# Added E116 because ShipIt sometimes generates lines that violate this, which we can't do anything about
ignore =
    C901,
    E116,
    B950,
    E111,
    E115,
    E117,
    E121,
    E122,
    E123,
    E124,
    E125,
    E126,
    E127,
    E128,
    E129,
    E131,
    E201,
    E202,
    E203,
    E221,
    E222,
    E225,
    E226,
    E227,
    E231,
    E241,
    E251,
    E252,
    E261,
    E262,
    E265,
    E266,
    E271,
    E272,
    E301,
    E302,
    E303,
    E305,
    E306,
    E402,
    E501,
    E502,
    E701,
    E702,
    E703,
    E704,
    E722,
    F722,
    P207,
    P208,
    W291,
    W292,
    W293,
    W391,
    W503,
    W504,
    B904,
    B905,
    B906,
    B907,
