golangci-lint/test/testdata/path_except.go
2023-05-31 17:25:59 +02:00

15 lines
250 B
Go

//golangcitest:args -Eforbidigo
//golangcitest:config_path testdata/configs/path-except.yml
//golangcitest:expected_exitcode 0
package testdata
import (
"fmt"
"time"
)
func Forbidigo() {
fmt.Printf("too noisy!!!")
time.Sleep(time.Nanosecond)
}