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

(cherry picked from commit 4ad1f8ee3a)
This commit is contained in:
Aliaksandr Valialkin 2024-06-11 16:41:01 +02:00 committed by hagen1778
parent b74dbdbc82
commit 81a3387bb7
No known key found for this signature in database
GPG Key ID: 3BF75F3741CA9640
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