From c9be7a28583b82c5745486ef3f3ea611ff15f7cc Mon Sep 17 00:00:00 2001 From: shawnps Date: Sun, 8 Feb 2015 14:08:28 -0800 Subject: [PATCH] increase gocyclo -over --- check/gocyclo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check/gocyclo.go b/check/gocyclo.go index d183aaa..aaaaa4a 100644 --- a/check/gocyclo.go +++ b/check/gocyclo.go @@ -13,7 +13,7 @@ func (g GoCyclo) Name() string { // Percentage returns the percentage of .go files that pass gofmt func (g GoCyclo) Percentage() (float64, []FileSummary, error) { - return GoTool(g.Dir, g.Filenames, []string{"gocyclo", "-over", "10"}) + return GoTool(g.Dir, g.Filenames, []string{"gocyclo", "-over", "15"}) } // Description returns the description of GoCyclo