-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsushi-problem-matcher.json
More file actions
40 lines (40 loc) · 953 Bytes
/
sushi-problem-matcher.json
File metadata and controls
40 lines (40 loc) · 953 Bytes
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
{
"problemMatcher": [
{
"owner": "sushi-error",
"pattern": [
{
"regexp": "^Sushi: (?>\\x1B\\[[0-9;]*m)*(error)(?>\\x1B\\[[0-9;]*m)* (.+?)\\s+\\([^)]+\\)$",
"severity": 1,
"message": 2
},
{
"regexp": "^Sushi: File: (.+?)\\s+\\([^)]+\\)$",
"file": 1
},
{
"regexp": "^Sushi: Line: (\\d+)( - (\\d+))?\\s+\\([^)]+\\)$",
"line": 1
}
]
},
{
"owner": "sushi-warning",
"severity": "warning",
"pattern": [
{
"regexp": "^Sushi: (?>\\x1B\\[[0-9;]*m)*(warn\\s)(?>\\x1B\\[[0-9;]*m)* (.+?)\\s+\\([^)]+\\)$",
"message": 2
},
{
"regexp": "^Sushi: File: (.+?)\\s+\\([^)]+\\)$",
"file": 1
},
{
"regexp": "^Sushi: Line: (\\d+)( - (\\d+))?\\s+\\([^)]+\\)$",
"line": 1
}
]
}
]
}