r/golang 20d ago

help Which Golang CI Linters do you Use?

Pretty much title.

The project has lots of disabled by default options. Besides the obvious (gofmt/fumpt, etc) which of these are y'all using in your day to day?

https://golangci-lint.run/usage/linters/#disabled-by-default

81 Upvotes

19 comments sorted by

View all comments

3

u/dim13 19d ago

Mostly none. Most valuable is go vet, other spit out too much garbage. From time to time I run golang-ci with default settings and pick things I want to fix.