Currently the update_traces_checksum script prints a label verification request with a line that is 167 characters long. Split the long line to make it more readable. Update the flake8 configuration to enforce a maximum line length of 159 characters to ensure consistency. Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32602>
34 lines
791 B
INI
34 lines
791 B
INI
[flake8]
|
|
exclude = .venv*,
|
|
|
|
# PEP 8 Style Guide limits line length to 79 characters
|
|
max-line-length = 159
|
|
|
|
ignore =
|
|
# continuation line under-indented for hanging indent
|
|
E121
|
|
# continuation line over-indented for hanging indent
|
|
E126,
|
|
# continuation line under-indented for visual indent
|
|
E128,
|
|
# whitespace before ':'
|
|
E203,
|
|
# missing whitespace around arithmetic operator
|
|
E226,
|
|
# missing whitespace after ','
|
|
E231,
|
|
# expected 2 blank lines, found 1
|
|
E302,
|
|
# too many blank lines
|
|
E303,
|
|
# imported but unused
|
|
F401,
|
|
# f-string is missing placeholders
|
|
F541,
|
|
# local variable assigned to but never used
|
|
F841,
|
|
# line break before binary operator
|
|
W503,
|
|
# line break after binary operator
|
|
W504,
|