aboutsummaryrefslogtreecommitdiff
path: root/scripts/qapi
diff options
context:
space:
mode:
authorJohn Snow <jsnow@redhat.com>2023-02-14 19:00:07 -0500
committerMarkus Armbruster <armbru@redhat.com>2023-02-23 12:49:39 +0100
commit885ecdbec9da62ede8019fc74f9154215e410aee (patch)
tree24c5bbd1a419a3b7d192af5a7d6a3e396fd80222 /scripts/qapi
parent6f2ddcde774d5cbe522693b374f45a1bcb70cebf (diff)
downloadqemu-885ecdbec9da62ede8019fc74f9154215e410aee.zip
qemu-885ecdbec9da62ede8019fc74f9154215e410aee.tar.gz
qemu-885ecdbec9da62ede8019fc74f9154215e410aee.tar.bz2
qapi: update pylint configuration
Newer versions of pylint disable the "no-self-use" message by default. Older versions don't, though. If we leave the suppressions in, pylint yelps about useless options. Just tell pylint to shush. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20230215000011.1725012-3-jsnow@redhat.com>
Diffstat (limited to 'scripts/qapi')
-rw-r--r--scripts/qapi/pylintrc1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/qapi/pylintrc b/scripts/qapi/pylintrc
index a724628..90546df 100644
--- a/scripts/qapi/pylintrc
+++ b/scripts/qapi/pylintrc
@@ -23,6 +23,7 @@ disable=fixme,
too-many-statements,
too-many-instance-attributes,
consider-using-f-string,
+ useless-option-value,
[REPORTS]