-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvscode-tasks.json
More file actions
86 lines (86 loc) · 3.16 KB
/
vscode-tasks.json
File metadata and controls
86 lines (86 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "PR Issues (once)",
"type": "process",
"command": "pwsh",
"args": [
"-NoLogo",
"-NonInteractive",
"-ExecutionPolicy", "Bypass",
"-Command", "Get-PullRequestIssues -Path ${workspaceFolder}"
],
"group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": [
{
"owner": "adopullrequestissues",
"fileLocation": [
"relative",
"${workspaceFolder}\\a\\b"
],
"pattern": [
{
// ../../edge_embedded_browser/public/cpp/embedded_browser_utils_win.cc(170,5): error: indirection requires pointer operand ('IDataObject' invalid)
"regexp": "^(.*)\\((\\d+),(\\d+)\\)\\s*:\\s+([^: ]+)[^:]*:\\s*(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
]
}
]
},
{
"label": "PR Issues",
"isBackground": true,
"type": "process",
"command": "pwsh",
"args": [
"-NoLogo",
"-NonInteractive",
"-ExecutionPolicy", "Bypass",
"-Command", "Watch-PullRequestIssues -Path ${workspaceFolder} -BuildErrors include"
],
"group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": [
{
"owner": "adopullrequestissues",
"fileLocation": [
"relative",
"${workspaceFolder}\\a\\b"
],
"pattern": [
{
"regexp": "^(.*)\\((\\d+),(\\d+)\\)\\s*:\\s*([^: ]+)[^:]*:\\s*(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
},
],
"background": {
"activeOnStart": true,
"beginsPattern": "---START LOG note---",
"endsPattern": "---END LOG note---",
}
}
]
},
]
}