From 62c96ef0ba6ec45548a51aad3e897f2c49f85697 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Mon, 11 Jan 2016 16:14:34 +0900 Subject: [PATCH] remove println --- check/misspell.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/check/misspell.go b/check/misspell.go index 973276b..aedd5bf 100644 --- a/check/misspell.go +++ b/check/misspell.go @@ -1,7 +1,5 @@ package check -import "fmt" - // Misspell is the check for the misspell command type Misspell struct { Dir string @@ -21,7 +19,6 @@ func (g Misspell) Weight() float64 { // Percentage returns the percentage of .go files that pass gofmt func (g Misspell) Percentage() (float64, []FileSummary, error) { params := AddSkipDirs([]string{"gometalinter", "--deadline=180s", "--disable-all", "--linter", "misspell:misspell ./*.go:PATH:LINE:MESSAGE", "--enable=misspell"}) - fmt.Println(params) return GoTool(g.Dir, g.Filenames, params) }