@@ -218,6 +218,7 @@ gocritic: The most opinionated Go source code linter [fast: true, auto-fix: fals
218
218
gocyclo: Computes and checks the cyclomatic complexity of functions [fast: true, auto-fix: false]
219
219
godot: Check if comments end in a period [fast: true, auto-fix: false]
220
220
godox: 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]
221
222
gofmt: 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]
222
223
goimports: Goimports does everything that gofmt does. Additionally it checks unused imports [fast: true, auto-fix: true]
223
224
golint: 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
492
493
- [wsl](https://github.com/bombsimon/wsl) - Whitespace Linter - Forces you to use empty lines!
493
494
- [goprintffuncname](https://github.com/jirfag/go-printf-func-name) - Checks that printf-like functions are named with `f` at the end
494
495
- [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
495
497
- [gomodguard](https://github.com/ryancurrah/gomodguard) - Allow and block list linter for direct Go module dependencies.
496
498
- [godot](https://github.com/tetafro/godot) - Check if comments end in a period
497
499
- [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:
1294
1296
- [bombsimon](https://github.com/bombsimon)
1295
1297
- [jirfag](https://github.com/jirfag)
1296
1298
- [tommy-muehle](https://github.com/tommy-muehle)
1299
+ - [Djarvur](https://github.com/Djarvur)
1297
1300
- [ryancurrah](https://github.com/ryancurrah)
1298
1301
- [tetafro](https://github.com/tetafro)
1299
1302
- [maratori](https://github.com/maratori)
0 commit comments