Update linter config, fix linter error

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2023-09-30 13:22:34 +02:00
parent 659da91258
commit 4f1fabb455
Signed by: luzifer
GPG Key ID: D91C3E91E4CAD6F5
2 changed files with 1 additions and 6 deletions

View File

@ -29,7 +29,6 @@ linters:
- bodyclose # checks whether HTTP response body is closed successfully [fast: true, auto-fix: false]
- containedctx # containedctx is a linter that detects struct contained context.Context field [fast: true, auto-fix: false]
- contextcheck # check the function whether use a non-inherited context [fast: false, auto-fix: false]
- depguard # Go linter that checks if package imports are in a list of acceptable packages [fast: true, auto-fix: false]
- dogsled # Checks assignments with too many blank identifiers (e.g. x, _, _, _, := f()) [fast: true, auto-fix: false]
- durationcheck # check for two durations multiplied together [fast: false, auto-fix: false]
- errcheck # Errcheck is a program for checking for unchecked errors in go programs. These unchecked errors can be critical bugs in some cases [fast: false, auto-fix: false]
@ -67,10 +66,6 @@ linters:
- wrapcheck # Checks that errors returned from external packages are wrapped [fast: false, auto-fix: false]
linters-settings:
forbidigo:
forbid:
- 'fmt\.Errorf' # Should use github.com/pkg/errors
funlen:
lines: 100
statements: 60

View File

@ -61,7 +61,7 @@ func main() {
}
if cfg.VersionAndExit {
fmt.Printf("go-latestver %s\n", version)
fmt.Printf("go-latestver %s\n", version) //nolint:forbidigo
os.Exit(0)
}