Created
April 19, 2016 17:47
-
-
Save nadako/f99c6fb2231ce80f539ebb3895a9a8c0 to your computer and use it in GitHub Desktop.
haxe problem matcher for vs code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.1.0", | |
"command": "haxe", | |
"args": ["build.hxml"], | |
"problemMatcher": { | |
"owner": "haxe", | |
"pattern": { | |
"regexp": "^(.+):(\\d+): (?:lines \\d+-(\\d+)|character(?:s (\\d+)-| )(\\d+)) : (?:(Warning) : )?(.*)$", | |
"file": 1, | |
"line": 2, | |
"endLine": 3, | |
"column": 4, | |
"endColumn": 5, | |
"severity": 6, | |
"message": 7 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment