aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 8794c8f..74db21e 100644
--- a/Makefile
+++ b/Makefile
@@ -10,14 +10,11 @@ all: lint test build
.PHONY: init
init:
git submodule update --init
- go install golang.org/x/tools/go/analysis/passes/fieldalignment/cmd/fieldalignment
- go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow
cd _www && yarn install
.PHONY: lint
lint: lint-www
- -fieldalignment ./...
- -shadow ./...
+ go run ./internal/cmd/gocheck ./...
go vet ./...
.PHONY: lint-www