Exclude worktrees in pyproject
This commit is contained in:
parent
600be4ed95
commit
8240265c71
1 changed files with 2 additions and 2 deletions
|
|
@ -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"]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue