mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-25 11:27:40 +00:00
and fix various warnings. For example, we mix tab and space indentations. v2: add flake8.cfg Cc: Tycho Andersen <tycho.andersen@canonical.com> Signed-off-by: Andrew Vagin <avagin@virtuozzo.com> Acked-by: Tycho Andersen <tycho.andersen@canonical.com> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
9 lines
328 B
INI
9 lines
328 B
INI
[flake8]
|
|
# W191 indentation contains tabs
|
|
# E128 continuation line under-indented for visual indent
|
|
# E501 line too long
|
|
# E251 unexpected spaces around keyword / parameter equals
|
|
# E101 indentation contains mixed spaces and tabs
|
|
# E126 continuation line over-indented for hanging indent
|
|
ignore = W191,E128,E501,E251,E101,E126
|