oag icon indicating copy to clipboard operation
oag copied to clipboard

Insert a newline in struct decls between embedded structs and regular fields

Open jbowes opened this issue 7 years ago • 0 comments

for example:

type Foo struct{
    Bar
    Name string
}

Should be:

type Foo struct{
    Bar
    
    Name string
}

jbowes avatar Nov 12 '17 23:11 jbowes