golangci-lint/test/testdata/goimports.go

13 lines
206 B
Go
Raw Permalink Normal View History

//golangcitest:args -Egoimports
2018-05-06 09:41:48 +03:00
package testdata
import (
"fmt" // want "File is not `goimports`-ed"
2018-05-06 09:41:48 +03:00
"github.com/golangci/golangci-lint/pkg/config"
)
2018-05-06 14:51:06 +03:00
func Bar() {
2018-05-06 09:41:48 +03:00
fmt.Print("x")
_ = config.Config{}
}