golangci-lint/test/testdata/depguard_ignore_file_rules.go
2022-07-15 15:32:10 +02:00

14 lines
274 B
Go

//golangcitest:args -Edepguard
//golangcitest:config_path testdata/configs/depguard_ignore_file_rules.yml
package testdata
// NOTE - No lint errors becuase this file is ignored
import (
"compress/gzip"
"log"
)
func SpewDebugInfo() {
log.Println(gzip.BestCompression)
}