github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/path_except_test.go (about)

     1  //golangcitest:args -Eforbidigo
     2  //golangcitest:config_path testdata/configs/path-except.yml
     3  package testdata
     4  
     5  import (
     6  	"fmt"
     7  	"testing"
     8  	"time"
     9  )
    10  
    11  func TestForbidigo(t *testing.T) {
    12  	fmt.Printf("too noisy!!!")  // want "use of `fmt\\.Printf` forbidden by pattern `fmt\\\\.Print\\.\\*`"
    13  	time.Sleep(time.Nanosecond) // want "no sleeping!"
    14  }