From c033c8c45e719981d7d5d1c7855197a4fc75fee5 Mon Sep 17 00:00:00 2001 From: Erin Call Date: Thu, 19 Dec 2019 11:09:39 -0800 Subject: [PATCH] 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. --- internal/run/lint.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/run/lint.go b/internal/run/lint.go index 620bc35..e2843ca 100644 --- a/internal/run/lint.go +++ b/internal/run/lint.go @@ -7,8 +7,7 @@ import ( // Lint is an execution step that calls `helm lint` when executed. type Lint struct { Chart string - - cmd cmd + cmd cmd } // Execute executes the `helm lint` command.