Skip to content

Instantly share code, notes, and snippets.

@wayanjimmy
Created January 10, 2016 11:48
Show Gist options
  • Save wayanjimmy/6c746598ec2d00801c35 to your computer and use it in GitHub Desktop.
Save wayanjimmy/6c746598ec2d00801c35 to your computer and use it in GitHub Desktop.
GoSublime user setting
{
"env": {
"GOPATH": "$HOME/gogo",
"PATH": "$GOPATH/bin:$PATH"
},
"fmt_cmd": [
"goimports"
],
"comp_lint_enabled": true,
"comp_lint_commands": [
{
"cmd": [
"golint *.go"
],
"shell": true
},
{
"cmd": [
"go",
"vet"
]
},
{
"cmd": [
"go",
"install"
]
}
],
"on_save": [
{
"cmd": "gs_comp_lint"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment