We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb1b272 commit 8def889Copy full SHA for 8def889
test/testdata/fix/in/gci.go
@@ -0,0 +1,15 @@
1
+//args: -Egci
2
+//config_path: testdata/configs/gci.yml
3
+package gci
4
+
5
+import (
6
+ "github.com/golangci/golangci-lint/pkg/config"
7
+ "github.com/pkg/errors"
8
+ "fmt"
9
+)
10
11
+func GoimportsLocalTest() {
12
+ fmt.Print("x")
13
+ _ = config.Config{}
14
+ _ = errors.New("")
15
+}
test/testdata/fix/out/gci.go
@@ -0,0 +1,17 @@
16
17
0 commit comments