mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-23 20:49:25 -04:00
10 lines
307 B
Go
10 lines
307 B
Go
//golangcitest:args -Elll
|
|
//golangcitest:config_path testdata/configs/lll_import.yml
|
|
//golangcitest:expected_exitcode 0
|
|
package testdata
|
|
|
|
import veryLongImportAliasNameForTest "github.com/golangci/golangci-lint/internal/golinters"
|
|
|
|
func LllSingleImport() {
|
|
_ = veryLongImportAliasNameForTest.NewLLL(nil)
|
|
}
|