setup-node/matchers/eslint-compact.json
Nick Schonning f87656b688 feat: allow folder of problem matcher registration
Allows registering of new problem matchers by adding them to folder
2020-08-15 14:20:01 -04:00

19 lines
483 B
JSON

{
"problemMatcher": [
{
"owner": "eslint-compact",
"pattern": [
{
"regexp": "^(.+):\\sline\\s(\\d+),\\scol\\s(\\d+),\\s(Error|Warning|Info)\\s-\\s(.+)\\s\\((.+)\\)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5,
"code": 6
}
]
}
]
}