golangci-lint/pkg/result/processors/testdata/nolint_whole_file.go

15 lines
168 B
Go

//nolint:errcheck
package testdata
func RetError() error {
return nil
}
func MissedErrorCheck1() {
RetErr()
}
func jo(v, w bool) bool {
return v == w || v == w
}