From 87cbc2a6e93b604d0c1417608c6e69d2c656401c Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Thu, 12 Dec 2024 13:41:00 -0600 Subject: [PATCH] make ruff ignore dirs --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 74cdf5c..e4a211a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,10 @@ test = [ version = {attr = "holoseq.__version__"} [tool.ruff] +exclude = [ + "notebooks", + "scripts", +] line-length = 100 [tool.ruff.lint.flake8-tidy-imports]