Canonical guidance

Use when

Avoid

Preferred pattern

type Level uint8

const (
	Debug Level = iota
	Info
	Warn
	Error
)

Anti-pattern

Explanation: This is tempting because it is terse, but opaque const blocks make versioning and review harder than explicit values or short grouped declarations.

Why

Related pages

Sources