qapi: update pylintrc config
authorJohn Snow <jsnow@redhat.com>
Mon, 24 Feb 2025 03:37:32 +0000 (22:37 -0500)
committerMarkus Armbruster <armbru@redhat.com>
Wed, 26 Feb 2025 10:09:49 +0000 (11:09 +0100)
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 <jsnow@redhat.com>
Message-ID: <20250224033741.222749-2-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
scripts/qapi/pylintrc

index c028a1f9f519534be04787f809abb5b5d53fb981..d24eece74114eb45760089f12f62908734d997e5 100644 (file)
@@ -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,