diff options
| author | Greg <supahgreg@users.noreply.github.com> | 2025-10-11 16:30:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-11 16:30:42 -0500 |
| commit | 5fb013d268c65f16a535ecc924f1480f07b4f011 (patch) | |
| tree | 5fb6d8efebb4b664c59180f61e975289bbab9388 /.vscode/tasks.json | |
| parent | 73e6ade27f9751d3892693be9e11946462e10ed5 (diff) | |
| parent | 7ad6c3ec641d0b89d072dc9b32202aebb8ecaf8d (diff) | |
Merge pull request #40 from tt-rss/project-cleanup
Project cleanup, PHPUnit config tweaks
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index bd6a7790f..000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "type": "shell", - "label": "phpstan (watcher)", - "isBackground": true, - "problemMatcher": { - "fileLocation": [ - "relative", - "${workspaceRoot}" - ], - "owner": "phpstan-watcher", - "pattern": { - "regexp": "^/app/(.*?):([0-9\\?]*):(.*)$", - "file": 1, - "line": 2, - "message": 3 - }, - "background": { - "activeOnStart": true, - "beginsPattern": "Using configuration file", - "endsPattern": "All done" - } - }, - "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": [] - }, - { - "type": "gulp", - "task": "default", - "problemMatcher": [], - "label": "gulp: default", - "options": { - "env": { - "PATH": "${workspaceRoot}/node_modules/.bin:$PATH" - } - } - } - ] -} |