aboutsummaryrefslogtreecommitdiff
path: root/.github/matchers/meson-problem-matcher.json
blob: 8484468ec7d454e86bba30dc6bdc6ad739cb37d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "problemMatcher": [
        {
            "owner": "meson-problem-matcher",
            "pattern": [
                {
                    "regexp": "^(.*?)?:(\\d+)?:(\\d+)?: (WARNING|ERROR):\\s+(.*)$",
                    "file": 1,
                    "line": 2,
                    "column": 3,
                    "severity": 4,
                    "message": 5
                }
            ]
        }
    ]
}