summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 393e5af86..0039fef88 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -2,6 +2,28 @@
"version": "2.0.0",
"tasks": [
{
+ "type": "shell",
+ "label": "phpstan 8.1 (watcher)",
+ "isBackground": true,
+ "problemMatcher": {
+ "fileLocation": ["relative", "${workspaceRoot}"],
+ "owner": "phpstan-watcher-8.1",
+ "pattern": {
+ "regexp": "^/app/(.*?):([0-9\\?]*):(.*)$",
+ "file": 1,
+ "line": 2,
+ "message": 3
+ },
+ "background": {
+ "activeOnStart": true,
+ "beginsPattern": "Using configuration file",
+ "endsPattern": "All done"
+
+ }
+ },
+ "command": "${workspaceRoot}/utils/phpstan-watcher.sh",
+ },
+ {
"type": "gulp",
"task": "default",
"problemMatcher": [],