repositorypackage
0.0.2
Repository: https://github.com/ksrnnb/notreturninterface.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
notreturninterface
notreturninterface
is a static code analyzer which detects function returns interface.
Install
You can install notreturninterface
by go install
command.
go install github.com/ksrnnb/notreturninterface/cmd/[email protected]
How to use
You can run notreturninterface
by go vet
command.
go vet -vettool=$(which notreturninterface) ./...
# When you want to ignore some interfaces, you can pass them separated by comma
go vet -vettool=$(which notreturninterface) -notreturninterface.ignore=any,someInterface ./...
Example
type Hoge interface{}
type Foo struct{}
func f() Hoge { // NG: return value is interface
return nil
}
func g() Foo { // OK: return value is struct
return Foo{}
}
func x() error { // OK: error is allowed
return nil
}
You can ignore notreturninterface
check by comment like//lint:ignore notreturninterface reason
. Note that reason
is required.
//lint:ignore notreturninterface hoge is special
func h() Hoge { // OK: you can ignore
return nil
}