Skip to content

Instantly share code, notes, and snippets.

@nzeemin
Created November 11, 2020 23:00
Show Gist options
  • Save nzeemin/6bbced7d03031dcae464de812bca7b66 to your computer and use it in GitHub Desktop.
Save nzeemin/6bbced7d03031dcae464de812bca7b66 to your computer and use it in GitHub Desktop.
{
// This is tasks.json file for VSCode, with custom problemMatcher for pasmo errors.
// For pasmo see http://pasmo.speccy.org/
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "make-bin",
"type": "shell",
"command": ".\\!make-bin.cmd",
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": false,
"presentation": {
"echo": false,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
"problemMatcher": {
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": [
{
"regexp": "^(ERROR) on line (\\d+) of file (.+)$",
"severity": 1,
"line": 2,
"file": 3,
"message": 0
},
{
"regexp": "^(ERROR): (.+)$",
"severity": 1,
"message": 2,
"loop": true
}
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment