Default severity: error
Reject importing the same package more than once.
Bad
import (
"strings"
text "strings"
)Good
import "strings"Reject importing the same package more than once.
Default severity: error
Reject importing the same package more than once.
import (
"strings"
text "strings"
)import "strings"