[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 01/19] qapi: sort pylint suppressions
|
From: |
Markus Armbruster |
|
Subject: |
Re: [PATCH v2 01/19] qapi: sort pylint suppressions |
|
Date: |
Mon, 15 Jan 2024 13:18:27 +0100 |
|
User-agent: |
Gnus/5.13 (Gnus v5.13) |
John Snow <jsnow@redhat.com> writes:
> Suggested-by: Markus Armbruster <armbru@redhat.com>
> Signed-off-by: John Snow <jsnow@redhat.com>
> ---
> scripts/qapi/pylintrc | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/scripts/qapi/pylintrc b/scripts/qapi/pylintrc
> index 90546df5345..78b63af4df6 100644
> --- a/scripts/qapi/pylintrc
> +++ b/scripts/qapi/pylintrc
> @@ -16,14 +16,14 @@ ignore-patterns=schema.py,
> # --enable=similarities". If you want to run only the classes checker, but
> have
> # no Warning level messages displayed, use "--disable=all --enable=classes
> # --disable=W".
> -disable=fixme,
> +disable=consider-using-f-string,
> missing-docstring,
> too-many-arguments,
> too-many-branches,
> - too-many-statements,
> too-many-instance-attributes,
> - consider-using-f-string,
> + too-many-statements,
> useless-option-value,
> + fixme,
>
> [REPORTS]
Any particular reason for putting fixme last?
- [PATCH v2 00/19] qapi: statically type schema.py, John Snow, 2024/01/12
- [PATCH v2 02/19] qapi/schema: add pylint suppressions, John Snow, 2024/01/12
- [PATCH v2 04/19] qapi/schema: declare type for QAPISchemaObjectTypeMember.type, John Snow, 2024/01/12
- [PATCH v2 05/19] qapi/schema: declare type for QAPISchemaArrayType.element_type, John Snow, 2024/01/12
- [PATCH v2 08/19] qapi/schema: add type narrowing to lookup_type(), John Snow, 2024/01/12