pyUpload/.vscode/tasks.json

18 lines
339 B
JSON
Raw Normal View History

2025-04-25 08:56:35 +02:00
{
"version": "2.0.0",
"tasks": [
{
"label": "Linter (pylint)",
"type": "shell",
"command": "pylint beispiel.py",
"group": "build"
},
{
"label": "Typprüfung (mypy)",
"type": "shell",
"command": "mypy beispiel.py",
"group": "build"
}
]
}