Last active
March 3, 2017 03:19
-
-
Save therako/eb3ce1b7554b35a19ae01e4f257f422d to your computer and use it in GitHub Desktop.
My sublime configs
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
go get -u golang.org/x/tools/cmd/goimports | |
go get -u golang.org/x/tools/cmd/godoc |
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
{ | |
"fmt_cmd": [ | |
"goimports" | |
], | |
"env": { | |
"GOPATH": "$HOME/Code/go", | |
"PATH": "$GOPATH/bin:$PATH" | |
}, | |
"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