Skip to content

Commit

Permalink
improving error matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
kbrashears5 committed May 24, 2021
1 parent 161775f commit 2ba6250
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions error-matcher.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,50 @@
{
"problemMatcher": [
{
"owner": "error1",
"owner": "genericError",
"pattern": [
{
"regexp": "^(.*error: .*)$",
"message": 1
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
]
},
{
"owner": "error2",
"owner": "gitRemoteRejectedError",
"pattern": [
{
"regexp": "^.*(\\[remote rejected\\] .*)$",
"message": 1
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
]
},
{
"owner": "error3",
"owner": "copyError",
"pattern": [
{
"regexp": "^.*(cp: can't stat .*)$",
"message": 1
"regexp": "^.*cp: can't stat .*$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
]
},
{
"owner": "gitRepoError",
"pattern": [
{
"regexp": "^.*fatal: not a git repository .*$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
]
}
Expand Down

0 comments on commit 2ba6250

Please sign in to comment.