[flake8]
# E501: Line length is enforced by Black, so flake8 doesn't need to check it
# W503: Black disagrees with this rule, as does PEP 8; Black wins
# E402: Ansible tends to have imports in certain sections of files.
ignore = E501, W503, E402
