Skip to content

Commit

Permalink
-Disable linter/copycheck for serious memory leak
Browse files Browse the repository at this point in the history
  • Loading branch information
wgliang committed Jul 30, 2017
1 parent 29a47cd commit 70293d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ A Golang tool that does static analysis, unit testing, code review and generate
- [structcheck](https://github.com/opennota/check) - Find unused struct fields.
- [aligncheck](https://github.com/opennota/check) - Warn about un-optimally aligned structures.
- [errcheck](https://github.com/kisielk/errcheck) - Check that error return values are used.
- [copycode(dupl)](https://github.com/mibk/dupl) - Reports potentially duplicated code.
- ~~[copycode(dupl)](https://github.com/mibk/dupl) - Reports potentially duplicated code.~~
- [gosimple](https://github.com/dominikh/go-tools/tree/master/cmd/gosimple) - Report simplifications in code.
- [staticcheck](https://github.com/dominikh/go-tools/tree/master/cmd/staticcheck) - Statically detect bugs, both obvious and subtle ones.
- [godepgraph](https://github.com/kisielk/godepgraph) - Godepgraph is a program for generating a dependency graph of Go packages.
Expand Down
2 changes: 1 addition & 1 deletion engine/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (r *Reporter) Engine() {
r.linterUnitTest(dirsUnitTest)
r.linterCyclo(dirsAll)
r.linterSimple(dirsAll)
r.linterCopy()
// r.linterCopy()
r.linterDead()
r.linterSpellCheck()
r.linterImportPackages()
Expand Down

0 comments on commit 70293d5

Please sign in to comment.