@@ -221,6 +221,7 @@ gofmt: Gofmt checks whether code was gofmt-ed. By default this tool runs with -s
221
221
goimports: Goimports does everything that gofmt does. Additionally it checks unused imports [fast: true, auto-fix: true]
222
222
golint: Golint differs from gofmt. Gofmt reformats Go source code, whereas golint prints out style mistakes [fast: true, auto-fix: false]
223
223
gomnd: 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]
224
225
gosec (gas): Inspects source code for security problems [fast: true, auto-fix: false]
225
226
interfacer: Linter that suggests narrower interface types [fast: true, auto-fix: false]
226
227
lll: Reports long lines [fast: true, auto-fix: false]
@@ -485,6 +486,7 @@ golangci-lint help linters
485
486
- [whitespace](https://github.com/ultraware/whitespace) - Tool for detection of leading and trailing whitespace
486
487
- [wsl](https://github.com/bombsimon/wsl) - Whitespace Linter - Forces you to use empty lines!
487
488
- [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
488
490
489
491
## Configuration
490
492
@@ -1232,6 +1234,7 @@ Thanks to developers and authors of used linters:
1232
1234
- [matoous](https://github.com/matoous)
1233
1235
- [ultraware](https://github.com/ultraware)
1234
1236
- [bombsimon](https://github.com/bombsimon)
1237
+ - [jirfag](https://github.com/jirfag)
1235
1238
- [tommy-muehle](https://github.com/tommy-muehle)
1236
1239
1237
1240
## Changelog
0 commit comments