Skip to content

Commit

Permalink
Add VSCode problem matcher for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
interstateone committed Mar 10, 2019
1 parent 09914cb commit c049c31
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": {
"owner": "sourcekit-lsp",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(?<file>.*):(?<line>\\d+):\\s+(?<severity>warning|error):\\s+(?<message>.*)$",
"file": 1,
"line": 2,
"severity": 3,
"message": 4
}
}
}
]
Expand Down

0 comments on commit c049c31

Please sign in to comment.