Skip to content

Instantly share code, notes, and snippets.

@nnarain
Created December 6, 2018 01:37
Show Gist options
  • Save nnarain/53373c0c342718563be95e2dc0c887ed to your computer and use it in GitHub Desktop.
Save nnarain/53373c0c342718563be95e2dc0c887ed to your computer and use it in GitHub Desktop.
{
"label": "cppcheck",
"group": "test",
"command": "cppcheck src/gameboycore --enable=all -q",
"options": {
"cwd": "${workspaceFolder}"
},
"type": "shell",
"problemMatcher": {
"owner": "cpp",
"fileLocation": ["relative", "${workspaceFolder}"],
"pattern":[
{
"regexp": "\\[(.*)\\:([0-9]*)\\]\\: \\((.*)\\) (.*)",
"file": 1,
"location": 2,
"severity": 3,
"message": 4
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment