15 lines
460 B
Go
15 lines
460 B
Go
//golangcitest:args -Elll
|
|
//golangcitest:config_path testdata/configs/lll_import.yml
|
|
//golangcitest:expected_exitcode 0
|
|
package testdata
|
|
|
|
import (
|
|
anotherVeryLongImportAliasNameForTest "github.com/golangci/golangci-lint/internal/golinters"
|
|
veryLongImportAliasNameForTest "github.com/golangci/golangci-lint/internal/golinters"
|
|
)
|
|
|
|
func LllMultiImport() {
|
|
_ = veryLongImportAliasNameForTest.NewLLL(nil)
|
|
_ = anotherVeryLongImportAliasNameForTest.NewLLL(nil)
|
|
}
|