loapi/.vscode/tasks.json
2025-12-28 12:09:53 -06:00

15 lines
357 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run Mypy",
"type": "shell",
"command": "uv run mypy .",
"problemMatcher": [
"$python"
]
}
]
}