@@ -199,7 +199,7 @@ depguard: Go linter that checks if package imports are in a list of acceptable p
199
199
dogsled: Checks assignments with too many blank identifiers (e.g. x, _, _, _, := f ()) [fast: true, auto-fix: false]
200
200
dupl: Tool for code clone detection [fast: true, auto-fix: false]
201
201
funlen: Tool for detection of long functions [fast: true, auto-fix: false]
202
- gochecknoglobals: Tool for detection of long functions [fast: true, auto-fix: false]
202
+ gochecknoglobals: Checks that no globals are present in Go code [fast: true, auto-fix: false]
203
203
gochecknoinits: Checks that no init functions are present in Go code [fast: true, auto-fix: false]
204
204
goconst: Finds repeated strings that could be replaced by a constant [fast: true, auto-fix: false]
205
205
gocritic: The most opinionated Go source code linter [fast: true, auto-fix: false]
@@ -462,7 +462,7 @@ golangci-lint help linters
462
462
- [scopelint](https://github.com/kyoh86/scopelint) - Scopelint checks for unpinned variables in go programs
463
463
- [gocritic](https://github.com/go-critic/go-critic) - The most opinionated Go source code linter
464
464
- [gochecknoinits](https://github.com/leighmcculloch/gochecknoinits) - Checks that no init functions are present in Go code
465
- - [gochecknoglobals](https://github.com/leighmcculloch/gochecknoglobals) - Tool for detection of long functions
465
+ - [gochecknoglobals](https://github.com/leighmcculloch/gochecknoglobals) - Checks that no globals are present in Go code
466
466
- [godox](https://github.com/matoous/godox) - Tool for detection of FIXME, TODO and other comment keywords
467
467
- [funlen](https://github.com/ultraware/funlen) - Tool for detection of long functions
468
468
- [whitespace](https://github.com/ultraware/whitespace) - Tool for detection of leading and trailing whitespace
0 commit comments