From c591e9c774494215274d2518fde09238d00fd27a Mon Sep 17 00:00:00 2001 From: Michael Platzer Date: Mon, 2 Mar 2026 09:22:50 +0100 Subject: [PATCH] Exclude Jupyter notebooks from Ruff checks --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d6383f80..29f310cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -97,6 +97,7 @@ build-backend = "hatchling.build" [tool.ruff] target-version = "py310" line-length = 120 +extend-exclude = ["*.ipynb"] [tool.ruff.format] exclude = ["examples/*.ipynb"] [tool.ruff.lint]