-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Config:
linters:
disable-all: true
enable:
- goimports
- gci
fast: false
linters-settings:
goimports:
local-prefixes: istio.io/
Input:
package main
import (
"fmt"
"istio.io/istio/pkg/test/framework/resource"
"os"
"istio.io/istio/pkg/test/framework/resource"
)
var (
_ = resource.Cluster
_ = fmt.Println
_ = os.Stdout
)
Output:
package main
import (
"fmt"
"os"
"istio.io/istio/pkg/test/framework/resource"
"istio.io/istio/pkg/test/framework/resource"
"istio.io/istio/pkg/test/framework/resource"
)
var (
_ = resource.Cluster
_ = fmt.Println
_ = os.Stdout
)
Output seems nondeterministic
cc @daixiang0
danielhochman, codeMonkeysBe, samber, dsullivan7, toby3d and 12 more
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working