[flake8]
# Max line length to match black configuration in pyproject.toml.
max-line-length = 100
extend-ignore = 
    E402, 
    E266,
# E203 is not PEP 8 compliant
    E203, 
    E501