From 41818f5fd2953c48a43e068020bd3b0241e7dffb Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Wed, 2 Oct 2019 08:37:54 +0900 Subject: [PATCH] gofmt --- cmd/goreportcard-cli/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/goreportcard-cli/main.go b/cmd/goreportcard-cli/main.go index cb57c46..2b9970b 100644 --- a/cmd/goreportcard-cli/main.go +++ b/cmd/goreportcard-cli/main.go @@ -1,9 +1,9 @@ package main import ( + "encoding/json" "flag" "fmt" - "encoding/json" "log" "os" @@ -14,7 +14,7 @@ var ( dir = flag.String("d", ".", "Root directory of your Go application") verbose = flag.Bool("v", false, "Verbose output") th = flag.Float64("t", 0, "Threshold of failure command") - jsn = flag.Bool("j", false, "JSON output. The binary will always exit with code 0") + jsn = flag.Bool("j", false, "JSON output. The binary will always exit with code 0") ) func main() {