github.com/nozzle/golangci-lint@v1.49.0-nz3/test/testdata/depguard.go (about)

     1  //golangcitest:args -Edepguard
     2  //golangcitest:config_path testdata/configs/depguard.yml
     3  package testdata
     4  
     5  import (
     6  	"compress/gzip" // want "`compress/gzip` is in the denylist"
     7  	"log"           // want "`log` is in the denylist: don't use log"
     8  )
     9  
    10  func SpewDebugInfo() {
    11  	log.Println(gzip.BestCompression)
    12  }