Run "uv sync -U" on vscode startup

This commit is contained in:
Joakim Hellsén 2025-12-11 13:48:53 +01:00
commit b11cfa03ea
No known key found for this signature in database

21
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "uv sync -U",
"type": "shell",
"command": "uv",
"args": [
"sync",
"-U"
],
"options": {
"cwd": "${workspaceFolder}"
},
"runOptions": {
"runOn": "folderOpen"
},
"problemMatcher": []
}
]
}