Skip to content

Instantly share code, notes, and snippets.

@nadako
Created April 19, 2016 17:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nadako/f99c6fb2231ce80f539ebb3895a9a8c0 to your computer and use it in GitHub Desktop.
Save nadako/f99c6fb2231ce80f539ebb3895a9a8c0 to your computer and use it in GitHub Desktop.
haxe problem matcher for vs code
{
"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