Format the Lint struct non-weirdly [#3]

I thought it was a golang style convention to put a blank line between
public and private struct fields, but apparently I imagined that.
This commit is contained in:
Erin Call
2019-12-19 11:09:39 -08:00
parent 30e1e3b99f
commit c033c8c45e

View File

@@ -7,8 +7,7 @@ import (
// Lint is an execution step that calls `helm lint` when executed. // Lint is an execution step that calls `helm lint` when executed.
type Lint struct { type Lint struct {
Chart string Chart string
cmd cmd
cmd cmd
} }
// Execute executes the `helm lint` command. // Execute executes the `helm lint` command.