From dbe97a5c31c997843f5bcbe241df8d9a1544255c Mon Sep 17 00:00:00 2001 From: Christine Wang Date: Mon, 27 Jan 2025 15:45:25 -0800 Subject: [PATCH 1/2] nit: exclude input_repo/output_repo --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 4c61ba5..0c078af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,10 @@ classifiers = [ [tool.ruff] line-length = 200 +exclude = [ + "**/input_repo/**", + "**/output_repo/**", +] [tool.uv] cache-keys = [{ git = { commit = true, tags = true } }] From 38a91e7934d9e663f2b80f254f840d6cfa87cabc Mon Sep 17 00:00:00 2001 From: Christine Wang Date: Mon, 27 Jan 2025 15:47:12 -0800 Subject: [PATCH 2/2] only lint exclude --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0c078af..eb4fd1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ [tool.ruff] line-length = 200 -exclude = [ +lint.exclude = [ "**/input_repo/**", "**/output_repo/**", ]