From a9e9c647ee1cca5b3f754781d9a621fc566cd470 Mon Sep 17 00:00:00 2001 From: Trevor Manz Date: Wed, 21 Aug 2024 16:44:30 -0400 Subject: [PATCH] Have ruff ignore docs --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 171b59d4..7d9589d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -104,7 +104,7 @@ test = "pytest . --cov anywidget --cov-report term-missing" [tool.ruff] line-length = 88 src = ["anywidget", "tests"] -exclude = ["packages"] +exclude = ["packages", "docs"] [tool.ruff.lint] pydocstyle = { convention = "numpy" }