Hi,
Great little project. Here is a simple suggestion for improving the output.
{
"version": "0.1.0",
"command": "Arduino",
"isShellCommand": true,
"showOutput": "always",
"tasks": [
{
"taskName": "--verify",
"args": ["${file}", "--verbose"],
"isBuildCommand": true,
"showOutput": "silent",
"problemMatcher": {
"owner": "external",
"fileLocation": ["relative", "${fileDirname}"],
"pattern": {
"regexp": "^(.):(\d+):(\d+):\s+(warning|error):\s+(.)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
},
{
"taskName": "--upload",
"args": ["${file}", "--verbose"],
"isTestCommand": true,
"showOutput": "always"
}
]
}