feat: allow folder of problem matcher registration

Allows registering of new problem matchers by adding them to folder
This commit is contained in:
Nick Schonning 2020-08-15 14:09:05 -04:00
parent 59e61b8951
commit f87656b688
5 changed files with 14 additions and 12 deletions

View file

@ -0,0 +1,18 @@
{
"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
}
]
}
]
}