github.com/vanstinator/golangci-lint@v0.0.0-20240223191551-cc572f00d9d1/test/testdata/sloglint.go (about) 1 //go:build go1.21 2 3 //golangcitest:args -Esloglint 4 package testdata 5 6 import "log/slog" 7 8 func test() { 9 slog.Info("msg", "foo", 1, "bar", 2) 10 slog.Info("msg", slog.Int("foo", 1), slog.Int("bar", 2)) 11 12 slog.Info("msg", "foo", 1, slog.Int("bar", 2)) // want `key-value pairs and attributes should not be mixed` 13 }