mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-26 14:09:19 -04:00
11 lines
307 B
Go
11 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)
|
||
|
}
|