mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 18:25:14 +00:00
flake8 started to report warnings like this: test/zdtm.py:1337:6: W605 invalid escape sequence '\S' Signed-off-by: Andrei Vagin <avagin@gmail.com>
9 lines
374 B
INI
9 lines
374 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
|
|
# W504 line break after binary operator
|
|
ignore = W191,E128,E501,E251,E101,E126,W504
|