tinytinyrss/.vscode/tasks.json

47 lines
995 B
JSON
Raw Normal View History

2020-09-17 12:30:52 +02:00
{
"version": "2.0.0",
"tasks": [
2022-07-31 08:39:56 +02:00
{
"type": "shell",
"label": "phpstan (watcher)",
"isBackground": true,
2022-07-31 08:39:56 +02:00
"problemMatcher": {
"fileLocation": [
"relative",
"${workspaceRoot}"
],
"owner": "phpstan-watcher",
2022-07-31 08:39:56 +02:00
"pattern": {
"regexp": "^/app/(.*?):([0-9\\?]*):(.*)$",
"file": 1,
"line": 2,
"message": 3
},
"background": {
"activeOnStart": true,
"beginsPattern": "Using configuration file",
"endsPattern": "All done"
2022-07-31 08:39:56 +02:00
}
},
"command": "chmod +x ${workspaceRoot}/utils/phpstan-watcher.sh && ${workspaceRoot}/utils/phpstan-watcher.sh"
},
{
"type": "shell",
"label": "phpunit",
"command": "chmod +x ${workspaceRoot}/utils/phpunit.sh && ${workspaceRoot}/utils/phpunit.sh",
"problemMatcher": []
2022-07-31 08:39:56 +02:00
},
2020-09-17 12:30:52 +02:00
{
"type": "gulp",
"task": "default",
"problemMatcher": [],
"label": "gulp: default",
"options": {
"env": {
"PATH": "${env:PATH}:/usr/lib/sdk/node16/bin/"
}
}
2020-09-17 12:30:52 +02:00
}
]
}