From aa846b5bff9217624960ba74d635ba28915d1fb9 Mon Sep 17 00:00:00 2001 From: Artur Ayukhanov Date: Sun, 30 Sep 2018 23:34:22 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20?= =?UTF-8?q?=D1=88=D0=B0=D0=B3=20=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=BF=D0=BE=D0=BB=D0=BD=D0=BE=D0=B3?= =?UTF-8?q?=D0=BE=20=D1=82=D0=B5=D1=81=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/tasks.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..d6b77b9 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,45 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + // "_runner": "terminal", + "windows": { + "command": "cmd", + "args": ["/c", "chcp 65001 && "] + }, + "linux": { + "command": "sh", + "args": ["-c"] + }, + "type": "shell", + "suppressTaskName": true, + "tasks": [ + { + "label": "Full testing", + "args": [ + "oscript", + "${workspaceRoot}/tasks/test.os" + ], + "group": { + "kind": "build", + "isDefault": true + }, + // "presentation": { + // "echo": true, + // "reveal": "always", + // "focus": false, + // "panel": "shared", + // "showReuseMessage": true + // }, + "problemMatcher": { + "fileLocation": "absolute", + "pattern": { + "regexp": "{Модуль\\s+(.+)\\s\\/\\s.*:\\s+(\\d+)\\s+\\/\\s+([^{]*)", + "file": 1, + "location": 2, + "message": 3 + } + } + } + ] +}