v2 / .github / problem-matchers / v.json
18 lines · 18 sloc · 530 bytes · 673d3e965f75189f29d8ebd56aa334bc97f11e0f
Raw
1{
2 "__comment": "Based on https://github.com/python/cpython/blob/main/.github/problem-matchers/gcc.json",
3 "problemMatcher": [
4 {
5 "owner": "v-problem-matcher",
6 "pattern": [
7 {
8 "regexp": "^(.*):(\\d+):(\\d+):\\s+(?:fatal\\s+)?(error):\\s+(.*)$",
9 "file": 1,
10 "line": 2,
11 "column": 3,
12 "severity": 4,
13 "message": 5
14 }
15 ]
16 }
17 ]
18}
19