golangci-lint/test/testdata/depguard_ignore_file_rules.go
2022-09-12 09:01:27 +02:00

15 lines
309 B
Go

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