golint
This commit is contained in:
parent
d0a5f1749d
commit
4d36d97d1d
10
Makefile
10
Makefile
|
@ -5,7 +5,7 @@ regen:
|
||||||
make -C testdata regen
|
make -C testdata regen
|
||||||
|
|
||||||
.PHONY: check
|
.PHONY: check
|
||||||
check: errcheck go-nyet
|
check: errcheck go-nyet golint
|
||||||
errcheck testdata/out/compress-memcopy.go
|
errcheck testdata/out/compress-memcopy.go
|
||||||
errcheck testdata/out/compress-nomemcopy.go
|
errcheck testdata/out/compress-nomemcopy.go
|
||||||
errcheck testdata/out/debug.go
|
errcheck testdata/out/debug.go
|
||||||
|
@ -16,9 +16,17 @@ check: errcheck go-nyet
|
||||||
go-nyet testdata/out/debug.go
|
go-nyet testdata/out/debug.go
|
||||||
go-nyet testdata/out/nocompress-memcopy.go
|
go-nyet testdata/out/nocompress-memcopy.go
|
||||||
go-nyet testdata/out/nocompress-nomemcopy.go
|
go-nyet testdata/out/nocompress-nomemcopy.go
|
||||||
|
golint testdata/out/compress-memcopy.go
|
||||||
|
golint testdata/out/compress-nomemcopy.go
|
||||||
|
golint testdata/out/debug.go
|
||||||
|
golint testdata/out/nocompress-memcopy.go
|
||||||
|
golint testdata/out/nocompress-nomemcopy.go
|
||||||
|
|
||||||
errcheck:
|
errcheck:
|
||||||
go get github.com/kisielk/errcheck
|
go get github.com/kisielk/errcheck
|
||||||
|
|
||||||
go-nyet:
|
go-nyet:
|
||||||
go get github.com/barakmich/go-nyet
|
go get github.com/barakmich/go-nyet
|
||||||
|
|
||||||
|
golint:
|
||||||
|
go get github.com/golang/lint/golint
|
||||||
|
|
Loading…
Reference in New Issue
Block a user