summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json24
-rw-r--r--.vscode/tasks.json46
2 files changed, 0 insertions, 70 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index b3911320d..000000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Listen for XDebug",
- "type": "php",
- "request": "launch",
- "pathMappings": {
- "/var/www/html/tt-rss": "${workspaceRoot}",
- },
- "port": 9000
- },
- {
- "name": "Launch Chrome",
- "request": "launch",
- "type": "chrome",
- "pathMapping": {
- "/tt-rss/": "${workspaceFolder}"
- },
- "urlFilter": "*/tt-rss/*",
- "runtimeExecutable": "chrome.exe",
- }
- ]
-}
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"
- }
- }
- }
- ]
-}