[flake8]
max-line-length = 124
ignore =
    # continuation line over-indented for visual indent
    E127,
    # continuation line under-indented for visual indent
    E128,
    # visually indented line with same indent as next logical line
    E129,
    # line break before binary operator
    W503,
    # line break after binary operator
    W504,
per-file-ignores =
    # we need to add the path to the local modules before importing them
    scripts/osinfo-db-add-iso.py: E402
