schet/.vscode/tasks.json

30 строки
504 Б
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "process",
"label": "go: test package",
"command": "/s/t",
"args": [
"${fileDirname}",
"${fileDirnameBasename}"
],
"problemMatcher": [
"$go"
],
"group": {
"kind": "test",
"isDefault": true
},
"detail": "cd /app; go test ${fileDirname}",
"presentation": {
"echo": false,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
}
}
]
}