From efb5329763c8cef26cbd739ae253206379916730 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= <mueller.seb@posteo.de> Date: Fri, 25 Oct 2024 12:44:04 +0200 Subject: [PATCH] Explicit limit for max pos args --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d1939642..71049752 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -135,7 +135,6 @@ multi_line_output = 3 "C0103", # ignore invalid-names like "x", "y" "C0415", # ignore defered imports "R0801", # ignore code duplications - "R0917", # too-many-positional-arguments ] [tool.pylint.reports] @@ -148,3 +147,4 @@ multi_line_output = 3 max-parents = 10 min-public-methods = 0 max-public-methods = 25 + max-positional-arguments=15 -- GitLab