Files
codeql/.github/problem-matchers/codeql-syntax-check.json
2022-05-20 10:22:47 -07:00

18 lines
420 B
JSON

{
"problemMatcher": [
{
"owner": "codeql-syntax-check",
"pattern": [
{
"regexp": "^((ERROR|WARNING): .* \\((.*):(\\d+),(\\d+)-\\d+\\))$",
"message": 1,
"file": 3,
"line": 4,
"col": 5,
"severity": 2
}
]
}
]
}