Last active
April 28, 2016 11:03
-
-
Save llaughlin/16305f0b91356e93a1c4 to your computer and use it in GitHub Desktop.
VSCode+Golang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.1.0", | |
"command": "go", | |
"args": ["build"], | |
"isShellCommand": true, | |
"showOutput": "silent", | |
"problemMatcher": { | |
"owner": "go", | |
// The file name for reported problems is relative to the current working directory. | |
"fileLocation": ["relative", "${cwd}"], | |
// The actual pattern to match problems in the output. | |
"pattern": { | |
"regexp": "^(.+)\\:(\\d+)\\:(.+)$", | |
"file": 1, | |
"location":2, | |
"message": 3 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment