github.com/songshiyun/revive@v1.1.5-0.20220323112655-f8433a19b3c5/testdata/golint/import-dot.go (about)

     1  // Test that dot imports are flagged.
     2  
     3  // Package pkg ...
     4  package pkg
     5  
     6  import . "fmt" // MATCH /should not use dot imports/
     7  
     8  var _ Stringer // from "fmt"