[flake8]
# E501: line too long | Black take care of it
# W503: line break before binary operator | Black take care of it
ignore = E501, W503

# init file are here to hide the internal structure to the user of the lib
exclude = */__init__.py