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

     1  //go:build go1.21
     2  
     3  //golangcitest:args -Esloglint
     4  //golangcitest:config_path testdata/configs/sloglint_context_only.yml
     5  package testdata
     6  
     7  import (
     8  	"context"
     9  	"log/slog"
    10  )
    11  
    12  func test() {
    13  	slog.InfoContext(context.Background(), "msg")
    14  
    15  	slog.Info("msg") // want `methods without a context should not be used`
    16  }