diff options
author | John Snow <jsnow@redhat.com> | 2023-02-14 19:00:07 -0500 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2023-02-23 12:49:39 +0100 |
commit | 885ecdbec9da62ede8019fc74f9154215e410aee (patch) | |
tree | 24c5bbd1a419a3b7d192af5a7d6a3e396fd80222 /scripts/qapi | |
parent | 6f2ddcde774d5cbe522693b374f45a1bcb70cebf (diff) |
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/pylintrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/qapi/pylintrc b/scripts/qapi/pylintrc index a724628203..90546df534 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] |