mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-19 10:22:02 -04:00
9 lines
243 B
Go
9 lines
243 B
Go
//golangcitest:args -Egofumpt
|
|
//golangcitest:config_path testdata/configs/gofumpt_with_extra.yml
|
|
package testdata
|
|
|
|
import "fmt"
|
|
|
|
func GofmtNotExtra(bar string, baz string) { // want "File is not `gofumpt`-ed with `-extra`"
|
|
fmt.Print("foo")
|
|
}
|