From da65b5a27063dfa6e607629c397ead01d1fd5968 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sat, 2 Mar 2024 16:08:44 +0100 Subject: [PATCH] Ignore .rye folder added by github action (#822) * Ignore .rye folder added by github action * Update pyproject.toml --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 43067e34af..b9abfed6ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,3 +30,7 @@ serve-docs = "mkdocs serve" [tool.rye.workspace] members = ["rye-devtools"] + +[tool.ruff] +# the .rye folder is added by the rye github action +exclude = [".rye", ".venv"]