« blog2025-03-09| lukasschwab.me
Programming languages seem to have somewhat stagnated to me. A lot of| jerf.org
An increasingly-frequently asked question in the Go subreddit is some| jerf.org
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.| blog.orsinium.dev
This article demonstrates a comprehensive linting setup for Go projects, and discusses the best way to introduce it into an existing project.| Freshman — Articles and Tutorials on Software Development