Add eslint problem matchers

This commit is contained in:
Danny McCormick 2019-06-17 16:32:07 -04:00
parent 82902559de
commit da2f6a5e33
4 changed files with 62 additions and 0 deletions

18
.github/eslint-compact.json vendored Normal file
View file

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