Skip to content
This repository was archived by the owner on Apr 10, 2019. It is now read-only.

Commit 5672743

Browse files
yasushi-saitoalecthomas
authored andcommitted
Update README.md.
Remove mentions of gosimple, megacheck, and unused.
1 parent 44efbc6 commit 5672743

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ brew install gometalinter
8888
- [structcheck](https://github.com/opennota/check) - Find unused struct fields.
8989
- [maligned](https://github.com/mdempsky/maligned) - Detect structs that would take less memory if their fields were sorted.
9090
- [errcheck](https://github.com/kisielk/errcheck) - Check that error return values are used.
91-
- [megacheck](https://github.com/dominikh/go-tools/tree/master/cmd/megacheck) - Run staticcheck, gosimple and unused, sharing work.
91+
- [staticcheck](https://github.com/dominikh/go-tools/tree/master/cmd/staticcheck) - Statically detect bugs, both obvious and subtle ones.
9292
- [dupl](https://github.com/mibk/dupl) - Reports potentially duplicated code.
9393
- [ineffassign](https://github.com/gordonklaus/ineffassign) - Detect when assignments to *existing* variables are not used.
9494
- [interfacer](https://github.com/mvdan/interfacer) - Suggest narrower interfaces that can be used.
@@ -102,16 +102,13 @@ Disabled by default (enable with `--enable=<linter>`):
102102
- [test](http://golang.org/pkg/testing/) - Show location of test failures from the stdlib testing module.
103103
- [gofmt -s](https://golang.org/cmd/gofmt/) - Checks if the code is properly formatted and could not be further simplified.
104104
- [goimports](https://godoc.org/golang.org/x/tools/cmd/goimports) - Checks missing or unreferenced package imports.
105-
- [gosimple](https://github.com/dominikh/go-tools/tree/master/cmd/gosimple) - Report simplifications in code.
106105
- [gochecknoinits](https://4d63.com/gochecknoinits) - Report init functions, to reduce side effects in code.
107106
- [gochecknoglobals](https://4d63.com/gochecknoglobals) - Report global vars, to reduce side effects in code.
108107
- [lll](https://github.com/walle/lll) - Report long lines (see `--line-length=N`).
109108
- [misspell](https://github.com/client9/misspell) - Finds commonly misspelled English words.
110109
- [nakedret](https://github.com/alexkohler/nakedret) - Finds naked returns.
111110
- [unparam](https://github.com/mvdan/unparam) - Find unused function parameters.
112-
- [unused](https://github.com/dominikh/go-tools/tree/master/cmd/unused) - Find unused variables.
113111
- [safesql](https://github.com/stripe/safesql) - Finds potential SQL injection vulnerabilities.
114-
- [staticcheck](https://github.com/dominikh/go-tools/tree/master/cmd/staticcheck) - Statically detect bugs, both obvious and subtle ones.
115112

116113
Additional linters can be added through the command line with `--linter=NAME:COMMAND:PATTERN` (see [below](#details)).
117114

0 commit comments

Comments
 (0)