golangci-lint/test/testdata/depguard_ignore_file_rules.go
Tim Kral 138699d60f
depguard: updates configuration (#2467)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
2022-01-09 11:48:31 +01:00

14 lines
250 B
Go

//args: -Edepguard
//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)
}