mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
8 lines
135 B
Go
8 lines
135 B
Go
// args: -Egofumpt
|
|
package testdata
|
|
|
|
import "fmt"
|
|
|
|
func GofumptNewLine() {
|
|
fmt.Println( "foo" ) // ERROR "File is not `gofumpt`-ed"
|
|
}
|