@@ -218,6 +218,7 @@ gocritic: The most opinionated Go source code linter [fast: true, auto-fix: fals
218218gocyclo: Computes and checks the cyclomatic complexity of functions [fast: true, auto-fix: false]
219219godot: Check if comments end in a period [fast: true, auto-fix: false]
220220godox: Tool for detection of FIXME, TODO and other comment keywords [fast: true, auto-fix: false]
221+ goerr113: Golang linter to check the errors handling expressions [fast: true, auto-fix: false]
221222gofmt: Gofmt checks whether code was gofmt-ed. By default this tool runs with -s option to check for code simplification [fast: true, auto-fix: true]
222223goimports: Goimports does everything that gofmt does. Additionally it checks unused imports [fast: true, auto-fix: true]
223224golint: Golint differs from gofmt. Gofmt reformats Go source code, whereas golint prints out style mistakes [fast: true, auto-fix: false]
@@ -492,6 +493,7 @@ golangci-lint help linters
492493- [wsl](https://github.com/bombsimon/wsl) - Whitespace Linter - Forces you to use empty lines!
493494- [goprintffuncname](https://github.com/jirfag/go-printf-func-name) - Checks that printf-like functions are named with `f` at the end
494495- [gomnd](https://github.com/tommy-muehle/go-mnd) - An analyzer to detect magic numbers.
496+ - [goerr113](https://github.com/Djarvur/go-err113) - Golang linter to check the errors handling expressions
495497- [gomodguard](https://github.com/ryancurrah/gomodguard) - Allow and block list linter for direct Go module dependencies.
496498- [godot](https://github.com/tetafro/godot) - Check if comments end in a period
497499- [testpackage](https://github.com/maratori/testpackage) - linter that makes you use a separate _test package
@@ -1294,6 +1296,7 @@ Thanks to developers and authors of used linters:
12941296- [bombsimon](https://github.com/bombsimon)
12951297- [jirfag](https://github.com/jirfag)
12961298- [tommy-muehle](https://github.com/tommy-muehle)
1299+ - [Djarvur](https://github.com/Djarvur)
12971300- [ryancurrah](https://github.com/ryancurrah)
12981301- [tetafro](https://github.com/tetafro)
12991302- [maratori](https://github.com/maratori)
0 commit comments