From 586ed9f2fb57d9084bd5a93225abcb3054fafd44 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Fri, 25 Oct 2024 22:00:26 +0200 Subject: [PATCH] Disable ruff FBT001 in tests (#9) --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 26f7faf..497024e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -95,6 +95,7 @@ warn_unused_ignores = true "D100", # Missing docstring in public module "D103", # Missing docstring in public function "D104", # Missing docstring in public package + "FBT001", # boolean-type-hint-positional-argument "N802", # Function name {name} should be lowercase "N816", # Variable {name} in global scope should not be mixedCase "PLR0913", # Too many arguments in function definition