Skip to content

Commit 70293d5

Browse files
committed
-Disable linter/copycheck for serious memory leak
1 parent 29a47cd commit 70293d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ A Golang tool that does static analysis, unit testing, code review and generate
3333
- [structcheck](https://github.com/opennota/check) - Find unused struct fields.
3434
- [aligncheck](https://github.com/opennota/check) - Warn about un-optimally aligned structures.
3535
- [errcheck](https://github.com/kisielk/errcheck) - Check that error return values are used.
36-
- [copycode(dupl)](https://github.com/mibk/dupl) - Reports potentially duplicated code.
36+
- ~~[copycode(dupl)](https://github.com/mibk/dupl) - Reports potentially duplicated code.~~
3737
- [gosimple](https://github.com/dominikh/go-tools/tree/master/cmd/gosimple) - Report simplifications in code.
3838
- [staticcheck](https://github.com/dominikh/go-tools/tree/master/cmd/staticcheck) - Statically detect bugs, both obvious and subtle ones.
3939
- [godepgraph](https://github.com/kisielk/godepgraph) - Godepgraph is a program for generating a dependency graph of Go packages.

engine/engine.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func (r *Reporter) Engine() {
8585
r.linterUnitTest(dirsUnitTest)
8686
r.linterCyclo(dirsAll)
8787
r.linterSimple(dirsAll)
88-
r.linterCopy()
88+
// r.linterCopy()
8989
r.linterDead()
9090
r.linterSpellCheck()
9191
r.linterImportPackages()

0 commit comments

Comments
 (0)