Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nadako
Created August 29, 2016 21:42
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/856327709ec1c38ac2598a3761ec5671 to your computer and use it in GitHub Desktop.
Save nadako/856327709ec1c38ac2598a3761ec5671 to your computer and use it in GitHub Desktop.
tasks.json from Haxe with OCaml problem matcher
{
"version": "0.1.0",
"command": "make",
"isShellCommand": true,
"args": ["ADD_REVISION=1", "-f", "Makefile.win", "haxe"],
"showOutput": "always",
"problemMatcher": {
"fileLocation": "relative",
"owner": "ocaml",
"pattern": [
{
"regexp": "^File \"(.*)\", line (\\d+), characters (\\d+)-(\\d+):$",
"file": 1,
"line": 2,
"column": 3,
"endColumn": 4
},
{
"regexp": "^(?:(Error|Warning)(?: \\d+)?): (.*)$",
"severity": 1,
"message": 2
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment