@@ -221,6 +221,7 @@ gofmt: Gofmt checks whether code was gofmt-ed. By default this tool runs with -s
221221goimports: Goimports does everything that gofmt does. Additionally it checks unused imports [fast: true, auto-fix: true]
222222golint: Golint differs from gofmt. Gofmt reformats Go source code, whereas golint prints out style mistakes [fast: true, auto-fix: false]
223223gomnd: An analyzer to detect magic numbers. [fast: true, auto-fix: false]
224+ goprintffuncname: Checks that printf-like functions are named with ` f` at the end [fast: true, auto-fix: false]
224225gosec (gas): Inspects source code for security problems [fast: true, auto-fix: false]
225226interfacer: Linter that suggests narrower interface types [fast: true, auto-fix: false]
226227lll: Reports long lines [fast: true, auto-fix: false]
@@ -485,6 +486,7 @@ golangci-lint help linters
485486- [whitespace](https://github.com/ultraware/whitespace) - Tool for detection of leading and trailing whitespace
486487- [wsl](https://github.com/bombsimon/wsl) - Whitespace Linter - Forces you to use empty lines!
487488- [gomnd](https://github.com/tommy-muehle/go-mnd) - An analyzer to detect magic numbers.
489+ - [goprintffuncname](https://github.com/jirfag/go-printf-func-name) - Checks that printf-like functions are named with `f` at the end
488490
489491## Configuration
490492
@@ -1232,6 +1234,7 @@ Thanks to developers and authors of used linters:
12321234- [matoous](https://github.com/matoous)
12331235- [ultraware](https://github.com/ultraware)
12341236- [bombsimon](https://github.com/bombsimon)
1237+ - [jirfag](https://github.com/jirfag)
12351238- [tommy-muehle](https://github.com/tommy-muehle)
12361239
12371240## Changelog
0 commit comments