diff --git a/Makefile b/Makefile index b834155..baea79a 100644 --- a/Makefile +++ b/Makefile @@ -62,10 +62,19 @@ cover: @go test -v -race ./... -coverprofile=coverage.txt -covermode=atomic @go tool cover -html=coverage.txt -o coverage.html +# Install gofumpt +fumpt-install: + @echo "⇒ Processing fumpt install" + @rm -rf $(GOFUMPT_DIR) + @mkdir $(GOFUMPT_DIR) + @GOBIN=$(GOFUMPT_VERSION_DIR) go install mvdan.cc/gofumpt@$(GOFUMPT_VERSION) + # Reformat code format: @echo "⇒ Processing gofmt check" @gofmt -s -w ./ + @echo "⇒ Processing clang format" + @clang-format -i **/*.js # Run linters lint: