diff --git a/check/check.go b/check/check.go index 6756187f..1d958164 100644 --- a/check/check.go +++ b/check/check.go @@ -56,7 +56,7 @@ func Run(dir string) (ChecksResult, error) { checks := []Check{ GoFmt{Dir: dir, Filenames: filenames}, GoVet{Dir: dir, Filenames: filenames}, - GoLint{Dir: dir, Filenames: filenames}, + // GoLint{Dir: dir, Filenames: filenames}, GoCyclo{Dir: dir, Filenames: filenames}, License{Dir: dir, Filenames: []string{}}, Misspell{Dir: dir, Filenames: filenames}, diff --git a/check/go_vet.go b/check/go_vet.go index 4f332d03..9a435338 100644 --- a/check/go_vet.go +++ b/check/go_vet.go @@ -13,7 +13,7 @@ func (g GoVet) Name() string { // Weight returns the weight this check has in the overall average func (g GoVet) Weight() float64 { - return .25 + return .30 } // Percentage returns the percentage of .go files that pass go vet diff --git a/check/ineffassign.go b/check/ineffassign.go index 61cb9248..8cbc785e 100644 --- a/check/ineffassign.go +++ b/check/ineffassign.go @@ -13,7 +13,7 @@ func (g IneffAssign) Name() string { // Weight returns the weight this check has in the overall average func (g IneffAssign) Weight() float64 { - return 0.05 + return 0.10 } // Percentage returns the percentage of .go files that pass gofmt