Created
July 20, 2015 14:21
-
-
Save serkanh/166b1db35f84a4f80478 to your computer and use it in GitHub Desktop.
Sublime-3-GoSublime user settings.
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
{ | |
// you may set specific environment variables here | |
// e.g "env": { "PATH": "$HOME/go/bin:$PATH" } | |
// in values, $PATH and ${PATH} are replaced with | |
// the corresponding environment(PATH) variable, if it exists. | |
"env": {"GOPATH": "$HOME/go", "PATH": "$GOPATH/bin:$PATH" }, | |
"fmt_cmd": ["goimports"], | |
// enable comp-lint, this will effectively disable the live linter | |
"comp_lint_enabled": true, | |
// list of commands to run | |
"comp_lint_commands": [ | |
// run `golint` on all files in the package | |
// "shell":true is required in order to run the command through your shell (to expand `*.go`) | |
// also see: the documentation for the `shell` setting in the default settings file ctrl+dot,ctrl+4 | |
{"cmd": ["golint *.go"], "shell": true}, | |
// run go vet on the package | |
{"cmd": ["go", "vet"]}, | |
// run `go install` on the package. GOBIN is set, | |
// so `main` packages shouldn't result in the installation of a binary | |
{"cmd": ["go", "install"]} | |
], | |
"on_save": [ | |
// run comp-lint when you save, | |
// naturally, you can also bind this command `gs_comp_lint` | |
// to a key binding if you want | |
{"cmd": "gs_comp_lint"} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment