From 35bd37e51ad9b1efa2e02850f46d6d2625644390 Mon Sep 17 00:00:00 2001 From: Isaev Denis Date: Mon, 4 Mar 2019 22:48:56 +0300 Subject: [PATCH] add gosumcheck --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0dff826..305d877 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,7 @@ Sponsored by [GolangCI](https://golangci.com): SaaS service for running linters * [errcheck](https://github.com/kisielk/errcheck) - Errcheck is a program for checking for unchecked errors in Go programs. * [gas](https://github.com/GoASTScanner/gas) - Inspects source code for security problems by scanning the Go AST. * [go vet](https://golang.org/cmd/vet/) - Vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string. Can check shadowing of variables, but must be enabled explicitly. +* [gosumcheck](https://github.com/haya14busa/gosum) - Checks all possible cases of type-switch are handled. * [mulint](https://github.com/gnieto/mulint) - Go lint which detects recursive locks, which may lead to dead locks. * [safesql](https://github.com/stripe/safesql) - Static analysis tool for Golang that protects against SQL injections. * [scopelint](https://github.com/kyoh86/scopelint) - scopelint checks for unpinned variables in go programs.