From 8240265c714af210bcf55d944b758f43f45d11be Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Sat, 7 Feb 2026 16:33:03 -0500 Subject: [PATCH] Exclude worktrees in pyproject --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b4fa720..55b3558 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,14 +28,14 @@ packages = ["src/mudlib"] [tool.ruff] src = ["src"] line-length = 88 -exclude = ["repos"] +exclude = ["repos", ".worktrees"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "SIM"] [tool.pyright] pythonVersion = "3.12" -exclude = ["repos", ".venv"] +exclude = ["repos", ".worktrees", ".venv"] [tool.pytest.ini_options] testpaths = ["tests"]