25 lines
734 B
Go
25 lines
734 B
Go
//go:build go1.21
|
|
|
|
//golangcitest:args -Esloglint
|
|
//golangcitest:config_path testdata/configs/sloglint_key_naming_case.yml
|
|
package testdata
|
|
|
|
import "log/slog"
|
|
|
|
const (
|
|
snakeKey = "foo_bar"
|
|
kebabKey = "foo-bar"
|
|
)
|
|
|
|
func test() {
|
|
slog.Info("msg", "foo_bar", 1)
|
|
slog.Info("msg", snakeKey, 1)
|
|
slog.Info("msg", slog.Int("foo_bar", 1))
|
|
slog.Info("msg", slog.Int(snakeKey, 1))
|
|
|
|
slog.Info("msg", "foo-bar", 1) // want `keys should be written in snake_case`
|
|
slog.Info("msg", kebabKey, 1) // want `keys should be written in snake_case`
|
|
slog.Info("msg", slog.Int("foo-bar", 1)) // want `keys should be written in snake_case`
|
|
slog.Info("msg", slog.Int(kebabKey, 1)) // want `keys should be written in snake_case`
|
|
}
|