loapi/.vscode/tasks.json
2025-12-28 14:18:33 -06:00

47 lines
1.2 KiB
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"
]
},
{
"label": "Isort Check",
"type": "shell",
"command": "uv run isort . --check --diff",
"problemMatcher": [
"$python"
]
},
{
"label": "Isort Fix",
"type": "shell",
"command": "uv run isort .",
"problemMatcher": [
"$python"
]
},
{
"label": "AutoPEP8 Check",
"type": "shell",
"command": "uv run autopep8 app/**/*.py --diff",
"problemMatcher": [
"$python"
]
},
{
"label": "AutoPEP8 Fix",
"type": "shell",
"command": "uv run autopep8 app/**/*.py --in-place",
"problemMatcher": [
"$python"
]
}
]
}