From: John Snow Date: Wed, 15 Feb 2023 00:00:07 +0000 (-0500) Subject: qapi: update pylint configuration X-Git-Tag: v8.0.0-rc0~48^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=885ecdbec9da62ede8019fc74f9154215e410aee;p=thirdparty%2Fqemu.git 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 Reviewed-by: Markus Armbruster Message-Id: <20230215000011.1725012-3-jsnow@redhat.com> --- diff --git a/scripts/qapi/pylintrc b/scripts/qapi/pylintrc index a7246282030..90546df5345 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]