Exclude worktrees in pyproject

This commit is contained in:
Jared Miller 2026-02-07 16:33:03 -05:00
parent 600be4ed95
commit 8240265c71
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C

View file

@ -28,14 +28,14 @@ packages = ["src/mudlib"]
[tool.ruff] [tool.ruff]
src = ["src"] src = ["src"]
line-length = 88 line-length = 88
exclude = ["repos"] exclude = ["repos", ".worktrees"]
[tool.ruff.lint] [tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"] select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.pyright] [tool.pyright]
pythonVersion = "3.12" pythonVersion = "3.12"
exclude = ["repos", ".venv"] exclude = ["repos", ".worktrees", ".venv"]
[tool.pytest.ini_options] [tool.pytest.ini_options]
testpaths = ["tests"] testpaths = ["tests"]