golangci-lint/test/testdata/goprintffuncname.go
2022-07-15 15:32:10 +02:00

6 lines
244 B
Go

//golangcitest:args -Egoprintffuncname
package testdata
func PrintfLikeFuncWithBadName(format string, args ...interface{}) { // ERROR "printf-like formatting function 'PrintfLikeFuncWithBadName' should be named 'PrintfLikeFuncWithBadNamef'"
}