ttrss/.vscode/tasks.json

39 lines
769 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",
2022-07-31 10:13:17 +02:00
"label": "phpstan 8.1 (watcher)",
"isBackground": true,
2022-07-31 08:39:56 +02:00
"problemMatcher": {
"fileLocation": ["relative", "${workspaceRoot}"],
2022-07-31 10:13:17 +02:00
"owner": "phpstan-watcher-8.1",
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
}
},
2022-07-31 10:13:17 +02:00
"command": "${workspaceRoot}/utils/phpstan-watcher.sh",
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
}
]
}