golangci-lint/test/testdata/errcheck_exclude_functions.go
2022-09-01 18:26:28 +02:00

19 lines
415 B
Go

//golangcitest:args -Eerrcheck
//golangcitest:config_path testdata/configs/exclude_functions.yml
package testdata
import (
"io/ioutil"
)
func TestErrcheckExcludeFunctions() []byte {
ret, _ := ioutil.ReadFile("f.txt")
ioutil.ReadDir("dir")
return ret
}
func TestErrcheckNoExcludeFunctions() []byte {
ret, _ := ioutil.ReadAll(nil) // want "Error return value of `ioutil.ReadAll` is not checked"
return ret
}