disable remaining failing ruff lints

This commit is contained in:
Jörg Thalheim 2023-11-29 08:29:47 +01:00
parent d5a10dc6d5
commit 4dbf3db600

View File

@ -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]