.golangci.yml: properly specify functions to exclude for return values check after the upgrade to v1.59.1 at 239a7b6e6f

This commit is contained in:
Aliaksandr Valialkin 2024-06-11 16:41:01 +02:00
parent 239a7b6e6f
commit 4ad1f8ee3a
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB
2 changed files with 4 additions and 4 deletions

View file

@ -16,4 +16,7 @@ issues:
linters-settings:
errcheck:
exclude-functions: ./errcheck_excludes.txt
exclude-functions:
- "fmt.Fprintf"
- "fmt.Fprint"
- "(net/http.ResponseWriter).Write"

View file

@ -1,3 +0,0 @@
fmt.Fprintf
fmt.Fprint
(net/http.ResponseWriter).Write