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