golangci-lint/test/testdata/goprintffuncname.go

6 lines
243 B
Go
Raw Permalink Normal View History

//golangcitest:args -Egoprintffuncname
2020-01-19 16:46:51 +03:00
package testdata
func PrintfLikeFuncWithBadName(format string, args ...interface{}) { // want "printf-like formatting function 'PrintfLikeFuncWithBadName' should be named 'PrintfLikeFuncWithBadNamef'"
2020-01-19 16:46:51 +03:00
}