golangci-lint/test/testdata/lll_import_multi.go
2024-03-26 15:50:23 +01:00

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)
}