From 683be148d848f598d62d8dc6d48f7c34654d712d Mon Sep 17 00:00:00 2001 From: Matt Stone Date: Mon, 21 Oct 2024 11:54:05 -0400 Subject: [PATCH] chore: ignore docstring errors in tests --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0345ca5..77f021f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,6 +90,9 @@ unfixable = ["B"] [tool.ruff.lint.isort] force-single-line = true +[tool.ruff.lint.per-file-ignores] +"tests/*" = ["D"] + [tool.mypy] python_version = 3.8 strict_optional = false