mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
After recent update of flake8, we have a lot of e117 warnings: test/zdtm.py:1748:5: E117 over-indented test/zdtm.py:1751:5: E117 over-indented test/zdtm.py:1755:6: E117 over-indented test/zdtm.py:1757:7: E117 over-indented test/zdtm.py:1764:6: E117 over-indented test/zdtm.py:1766:5: E117 over-indented test/zdtm.py:1767:6: E117 over-indented Signed-off-by: Andrei Vagin <avagin@gmail.com>
10 lines
399 B
INI
10 lines
399 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
|
|
# E117 over-indented
|
|
ignore = W191,E128,E501,E251,E101,E126,W504,E117
|