Open
Description
A declaration of the form:
const (
Do = iota; Re; Mi; Fa; Sol; La; Ti;
)
gets formatted as:
const (
Do = iota
Re
Mi
Fa
Sol
La
Ti
)
The former is close to what in other languages might be achieved with an "enum" declaration. If there's several such simple const decls, the latter form uses undue amount of space w/o much readability benefit.
Consider recognizing this special case and not introduce line-breaks if there were none in the original source.