18 lines
253 B
Go
18 lines
253 B
Go
//args: -Egci
|
|
//config_path: testdata/configs/gci.yml
|
|
package testdata
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/golangci/golangci-lint/pkg/config"
|
|
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func GoimportsLocalTest() {
|
|
fmt.Print("x")
|
|
_ = config.Config{}
|
|
_ = errors.New("")
|
|
}
|