|
|
|
|
|
by treigerm
3613 days ago
|
|
I use an Atom extension called "gofmt" which automatically calls goimports[1] every time I save. So any unused imports will be removed and if I start to use new imports that are in my GOPATH or the standard library then it automatically adds them. [1] https://godoc.org/golang.org/x/tools/cmd/goimports |
|