15 lines
250 B
Go
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)
|
|
}
|