pyUpload/.vscode/tasks.json
Adam Skotarczak e70562cbdc 1.1.0
2025-04-25 08:56:35 +02:00

18 lines
339 B
JSON

{
"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"
}
]
}