From: John Snow Date: Mon, 24 Feb 2025 03:37:32 +0000 (-0500) Subject: qapi: update pylintrc config X-Git-Tag: v10.0.0-rc0~34^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6a2c7fc29ab6e8fdce4829d3229db534abf923bb;p=thirdparty%2Fqemu.git qapi: update pylintrc config If you've got a newer pylint, it'll whine about positional arguments separately from the regular ones. Update the configuration to ignore both categories of warning. Signed-off-by: John Snow Message-ID: <20250224033741.222749-2-jsnow@redhat.com> Reviewed-by: Markus Armbruster Signed-off-by: Markus Armbruster --- diff --git a/scripts/qapi/pylintrc b/scripts/qapi/pylintrc index c028a1f9f51..d24eece7411 100644 --- a/scripts/qapi/pylintrc +++ b/scripts/qapi/pylintrc @@ -17,6 +17,7 @@ disable=consider-using-f-string, too-many-arguments, too-many-branches, too-many-instance-attributes, + too-many-positional-arguments, too-many-statements, useless-option-value,