> It's my understanding that the Go compiler will format your code every time you compile.
I do not believe that is the case. You have to invoke `gofmt` or `go fmt` on the project.
You may hook it to precommit, or your editor might be configured to automatically run it on save, but afaik neither `go build` nor `go run` will auto-format.
I do not believe that is the case. You have to invoke `gofmt` or `go fmt` on the project.
You may hook it to precommit, or your editor might be configured to automatically run it on save, but afaik neither `go build` nor `go run` will auto-format.