golangci: disable new exhauststruct rule

A new linter rule was added in the latest version that wants all fields
in a struct to be declared, even if the default value is used. Because
that would mean a large diff for us, we disable the rule for now.
This commit is contained in:
Oliver Gugger 2022-07-14 09:29:34 +02:00
parent 7d7ab4da3a
commit da75619245
No known key found for this signature in database
GPG key ID: 8E4256593F177720

View file

@ -108,6 +108,7 @@ linters:
- contextcheck
- errname
- exhaustivestruct
- exhaustruct
- goerr113
- gomnd
- ifshort