diff --git a/pyproject.toml b/pyproject.toml
index 2469a1a252d4512fa44cf2020140226ebe642cb8..e2496cb81797a13eb07f7d142d22dc36477b9abb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -41,6 +41,7 @@ ignore = [
     "D203",
     "D213",
     "N805",
+    "PLR0913",
 ]
 line-length = 120
 select = [
@@ -88,7 +89,6 @@ select = [
     "SLF",
     "T",
     "T20",
-    "TD",
     "TID",
     "TRY",
     "UP",
@@ -101,7 +101,7 @@ target-version = "py311"
 ban-relative-imports = "all"
 
 [tool.ruff.per-file-ignores]
-"test/*" = ["D", "S101", "PLR2004"]
+"test/*" = ["ARG001", "D", "S101", "PLR2004"]
 
 [tool.ruff.isort]
 known-third-party = ["pydantic", "migrations"]