From 4dbf3db6002b72ab701b8dc5e49baf999a24ce98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 29 Nov 2023 08:29:47 +0100 Subject: [PATCH] disable remaining failing ruff lints --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 971841f..483f9dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,11 @@ ignore = [ "S101", # `subprocess` call: check for execution of untrusted input "S603", + + # FIXME? Maybe we should enable these? + "PLR0913", # Too many arguments in function definition (7 > 5) + "PLR2004", # Magic value used in comparison, consider replacing 4 with a constant variable + "FBT002", # Boolean default positional argument in function definition ] [tool.mypy]