[flake8]
# same as in 'black'
max-line-length = 88
ignore =
    # E203 whitespace before ':'
    # result of black-formatted code
    E203,
    # line break before binary operator
    W503,
per-file-ignores =
    # we need to add the path to the local modules before importing them
    scripts/osinfo-db-add-iso.py: E402
    # E501 line too long (* > 88 characters)
    # there is a wide ASCII graph on the comment at the top of the script
    scripts/updates/nixos.py: E501
