19 lines
460 B
Go
19 lines
460 B
Go
//golangcitest:args -Eerrcheck
|
|
//golangcitest:config linters-settings.errcheck.check-blank=true
|
|
//golangcitest:config linters-settings.errcheck.exclude=testdata/errcheck/exclude.txt
|
|
package testdata
|
|
|
|
import (
|
|
"io/ioutil"
|
|
)
|
|
|
|
func TestErrcheckExclude() []byte {
|
|
ret, _ := ioutil.ReadFile("f.txt")
|
|
return ret
|
|
}
|
|
|
|
func TestErrcheckNoExclude() []byte {
|
|
ret, _ := ioutil.ReadAll(nil) // ERROR "Error return value of `ioutil.ReadAll` is not checked"
|
|
return ret
|
|
}
|