forked from google/OpenSK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
python_matcher.json
40 lines (40 loc) · 1.08 KB
/
python_matcher.json
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": "yapf-diff",
"pattern": [
{
"regexp": "^---\\s*([^\\s]*)\\s*\\(original\\)$",
"file": 1
},
{
"regexp": "^\\+\\+\\+\\s*([^\\s]*)\\s*\\((.*)\\)$",
"message": 2
},
{
"regexp": "^@@\\s*-(\\d+),(\\d+)\\s*\\+(\\d+),(\\d+)\\s*@@$",
"line": 1
}
]
},
{
"owner": "pylint",
"pattern": [
{
"regexp": "^PYLINT:(.*)/.*$",
"fromPath": 1
},
{
"regexp": "^\\*{13}\\s*Module\\s+(.*)$",
"file": 1
},
{
"regexp": "^([CEFIRW]\\d{4}):\\s*(\\d+)\\s*:\\s*(.*)$",
"code": 1,
"line": 2,
"message": 3
}
]
}
]
}