github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/lll_multi_import.go (about)

     1  //golangcitest:args -Elll
     2  //golangcitest:config_path testdata/configs/lll_import.yml
     3  //golangcitest:expected_exitcode 0
     4  package testdata
     5  
     6  import (
     7  	anotherVeryLongImportAliasNameForTest "github.com/vanstinator/golangci-lint/internal/golinters"
     8  	veryLongImportAliasNameForTest "github.com/vanstinator/golangci-lint/internal/golinters"
     9  )
    10  
    11  func LllMultiImport() {
    12  	_ = veryLongImportAliasNameForTest.NewLLL(nil)
    13  	_ = anotherVeryLongImportAliasNameForTest.NewLLL(nil)
    14  }