18 lines
339 B
JSON
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"
|
||
|
}
|
||
|
]
|
||
|
}
|