htlle-da-vorlage/example/.vscode/tasks.json

24 lines
624 B
JSON
Raw Permalink Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "Build PDF",
"command": "wsl make pdf -C HTLLE-DA-Vorlage SOURCEDIR='$(pwd)'",
"type": "shell",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Check Spelling",
"command": "wsl make spellcheck -C HTLLE-DA-Vorlage SOURCEDIR='$(pwd)'",
"type": "shell",
"problemMatcher": [],
"group": {
"kind": "test",
}
}
]
}