From d0a06021e8211b14f1de24bb89019abffe5bb1e9 Mon Sep 17 00:00:00 2001 From: Forrest Collman Date: Wed, 4 Dec 2024 09:14:28 -0800 Subject: [PATCH] ignoring notebooks in formatting --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index b8f01ecd..61d63800 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -78,6 +78,9 @@ tag_name = "v{new_version}" [[tool.bumpversion.files]] filename = "pyproject.toml" +[tool.ruff.lint] +exclude = ["docs", "tests", '*.ipynb'] + [tool.poe.tasks] checks = ['doc-build', 'lint', 'test'] doc-build = "mkdocs build"