From 8a2835d17f8f6a0caf61cd70571416b2a2a06de8 Mon Sep 17 00:00:00 2001 From: Stuart Hallows Date: Thu, 22 Dec 2022 13:35:22 +1030 Subject: [PATCH] golint is deprecated, include link to alterative library --- CodeTools.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CodeTools.md b/CodeTools.md index 16f48d16..d2c2a4bd 100644 --- a/CodeTools.md +++ b/CodeTools.md @@ -15,7 +15,8 @@ An overview of tools that will help improve your Go code - [air](https://github.com/cosmtrek/air) - Live reload for Go apps - [gofmt](https://pkg.go.dev/cmd/gofmt/) - Start with the standard Go code formatter. - - [golint](https://github.com/golang/lint) - Detects style mistakes in Go code. + - [golint](https://github.com/golang/lint) - Detects style mistakes in Go code (deprecated). + - [staticcheck](https://staticcheck.io/) - Go programming language linter. - [goimports](https://pkg.go.dev/golang.org/x/tools/cmd/goimports) - Format code and fix your import statements. - [gofumpt](https://github.com/mvdan/gofumpt) - A stricter gofmt. - [revive](https://github.com/mgechev/revive) - Fast, configurable, extensible, flexible, and beautiful linter for Go.