mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-23 04:31:36 -04:00
5 lines
243 B
Go
5 lines
243 B
Go
//golangcitest:args -Egoprintffuncname
|
|
package testdata
|
|
|
|
func PrintfLikeFuncWithBadName(format string, args ...interface{}) { // want "printf-like formatting function 'PrintfLikeFuncWithBadName' should be named 'PrintfLikeFuncWithBadNamef'"
|
|
}
|