mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-07-13 13:14:16 -04:00
14 lines
250 B
Go
14 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)
|
|
}
|