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]
|
||||
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"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue