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