Improves golangci-lint configuration and workflow (#3004)

* chore: the default Go version is based on the go.mod

* chore: use linter configuration instead of exclude-rules

* chore: update workflow
This commit is contained in:
Ludovic Fernandez 2024-05-08 00:52:26 +02:00 committed by GitHub
parent 2470471b2b
commit 4d29184998
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 11 deletions

View file

@ -1,6 +1,3 @@
run:
go: "1.20"
linters:
enable:
- asasalint
@ -28,8 +25,9 @@ linters:
- unused
- whitespace
issues:
exclude-rules:
- linters:
- gosec
text: "(G501|G401|G505):"
linters-settings:
gosec:
excludes:
- G501
- G401
- G505