From bdbe3e501def4171a14bff8a0b11ba7bc1e2c2c8 Mon Sep 17 00:00:00 2001 From: linsui <2873532-linsui@users.noreply.gitlab.com> Date: Wed, 1 Oct 2025 23:45:55 +0800 Subject: [PATCH] pylint: disable global-variable-not-assigned, global-statement, global-variable-undefined, too-many-positional-arguments and unspecified-encoding --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5c5a159c..1c669271 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,6 +99,9 @@ confidence = ["HIGH", "INFERENCE"] disable = [ "broad-exception-caught", "broad-exception-raised", + "global-statement", + "global-variable-not-assigned", + "global-variable-undefined", "invalid-name", "missing-class-docstring", "missing-function-docstring", @@ -107,6 +110,8 @@ disable = [ "no-else-raise", "no-else-return", "subprocess-run-check", + "too-many-positional-arguments", + "unspecified-encoding", "use-dict-literal", ]