From dd18071893f738e49f32226333cbb62ae9db22fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Bal=C3=A1=C5=BEik?= Date: Wed, 28 Jan 2026 01:15:25 +0100 Subject: [PATCH] Reintroduce pylint checks that are not being violated We might reintroduce them later if they become obnoxious. (cherry picked from commit 115e64ea9e94683c3468a0b7f60cdf2e40e38204) --- pyproject.toml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2bc530b2cb..99ce2021e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,18 +21,14 @@ disable = [ "C0116", # missing-function-docstring "C0301", # line-too-long, handled better by black "C0302", # too-many-lines - "C0415", # import-outside-toplevel "R0801", # duplicate-code - "R0901", # too-many-ancestors "R0902", # too-many-instance-attributes "R0903", # too-few-public-methods - "R0904", # too-many-public-methods "R0911", # too-many-return-statements "R0912", # too-many-branches "R0913", # too-many-arguments "R0914", # too-many-locals "R0915", # too-many-statements - "R0916", # too-many-boolean-expressions "R0917", # too-many-positional-arguments ] [tool.pylint.main]