mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-12 06:18:43 -04:00
18 lines
288 B
Go
18 lines
288 B
Go
|
//args: -Egci
|
||
|
//config: linters-settings.gci.local-prefixes=github.com/golangci/golangci-lint
|
||
|
package gci
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/golangci/golangci-lint/pkg/config"
|
||
|
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
func GoimportsLocalTest() {
|
||
|
fmt.Print("x")
|
||
|
_ = config.Config{}
|
||
|
_ = errors.New("")
|
||
|
}
|