Linters The first linter you face coming into Go is go vet. It is a built-in linter targeted mostly at finding bugs rather than code style. Another official linter from the Go core team is golint. This one is targeted at finding not bugs but mostly style issues from the official code review guide and effective go. If you want to catch more bugs and write more effective code, consider running more linters.