From 35cab82605630c7db27ac3da3d624efa6cd975db Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 16 Jul 2017 21:28:54 +0300 Subject: [PATCH] Remove static tasks for VSCode --- .../ide/tpls/vscode/.vscode/tasks.json.tpl | 125 ------------------ 1 file changed, 125 deletions(-) delete mode 100644 platformio/ide/tpls/vscode/.vscode/tasks.json.tpl diff --git a/platformio/ide/tpls/vscode/.vscode/tasks.json.tpl b/platformio/ide/tpls/vscode/.vscode/tasks.json.tpl deleted file mode 100644 index a0efc7bc..00000000 --- a/platformio/ide/tpls/vscode/.vscode/tasks.json.tpl +++ /dev/null @@ -1,125 +0,0 @@ -{ - "version": "0.1.0", - "runner": "terminal", - "command": "\"{{platformio_path}}\"", - "isShellCommand": false, - "args": ["-c", "vscode"], - "showOutput": "always", - "echoCommand": false, - "suppressTaskName": true, - "tasks": [ - { - "taskName": "PlatformIO: Build", - "isBuildCommand": true, - "args": ["run"], - "problemMatcher": { - "owner": "cpp", - "fileLocation": ["relative", "${workspaceRoot}"], - "pattern": { - "regexp": "^([^:\\n]+):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "message": 5 - } - } - }, - { - "taskName": "PlatformIO: Clean", - "args": ["run", "-t", "clean"] - }, - { - "taskName": "PlatformIO: Upload", - "args": ["run", "-t", "upload"], - "problemMatcher": { - "owner": "cpp", - "fileLocation": ["relative", "${workspaceRoot}"], - "pattern": { - "regexp": "^([^:\\n]+):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "message": 5 - } - } - }, - { - "taskName": "PlatformIO: Upload using Programmer", - "args": ["run", "-t", "program"], - "problemMatcher": { - "owner": "cpp", - "fileLocation": ["relative", "${workspaceRoot}"], - "pattern": { - "regexp": "^([^:\\n]+):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "message": 5 - } - } - }, - { - "taskName": "PlatformIO: Upload SPIFFS image", - "args": ["run", "-t", "uploadfs"], - "problemMatcher": { - "owner": "cpp", - "fileLocation": ["relative", "${workspaceRoot}"], - "pattern": { - "regexp": "^([^:\\n]+):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "message": 5 - } - } - }, - { - "taskName": "PlatformIO: Upload and Monitor", - "args": ["run", "-t", "upload", "-t", "monitor"], - "problemMatcher": { - "owner": "cpp", - "fileLocation": ["relative", "${workspaceRoot}"], - "pattern": { - "regexp": "^([^:\\n]+):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "message": 5 - } - } - }, - { - "taskName": "PlatformIO: Monitor", - "args": ["device", "monitor"] - }, - { - "taskName": "PlatformIO: Test", - "args": ["test"], - "problemMatcher": { - "owner": "cpp", - "fileLocation": ["relative", "${workspaceRoot}"], - "pattern": { - "regexp": "^([^:\\n]+):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "message": 5 - } - } - }, - { - "taskName": "PlatformIO: Update platforms and libraries", - "args": ["update"] - }, - { - "taskName": "PlatformIO: Upgrade PIO Core", - "args": ["upgrade"] - } - ] -} \ No newline at end of file