[flake8]
ignore = E501, E203, E402, W503, Q000
# E501 & E203: Formatting handled by Black
# E402 complains about imports not being at the top
# W503 complains about splitting if across lines which conflicts with Black
# Q000 complains about using "" and not '' which conflicts with Black
exclude =
    fbschemas
    README.md
