Loong Dai 5e183652ba
build(deps): bump github.com/daixiang0/gci from 0.4.0 to 0.4.1 (#2973)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
2022-07-11 09:59:13 +02:00

18 lines
248 B
Go

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