From 8692f80229993f42781072ad48662e7b21c5d845 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 22 Jun 2024 10:31:30 -0500 Subject: [PATCH] pyproject(pylint): Remove no-useless-continuation pyproject.toml:1:0: R0022: Useless option value for '--disable', 'bad-continuation' was removed from pylint, see https://github.com/pylint-dev/pylint/pull/3571. (useless-option-value) --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7c0e43b..8519118 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -112,10 +112,9 @@ persistent = "no" # Allow to load C extension modules. unsafe-load-any-extension = "yes" [tool.pylint."MESSAGES CONTROL"] -# bad-continuation: Black does the job, no need to check. # design: Do not count lines, members, ..., no use. # similarities: Duplication does not mean bad design by itself. -disable = "bad-continuation,design,similarities" +disable = "design,similarities" enable = "c-extension-no-member" [tool.pylint.BASIC] # It is OK to have 2-letters identifiers, e.g. 'id' or 'ok'. Also allow