We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0fcc178 commit 746766dCopy full SHA for 746766d
Makefile
@@ -33,6 +33,10 @@ lint:
33
@GO111MODULE=on ${GOPATH}/bin/golangci-lint cache clean
34
@GO111MODULE=on ${GOPATH}/bin/golangci-lint run --timeout=5m --config ./.golangci.yml
35
36
+lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
37
+ @echo "Running $@ check"
38
+ @GO111MODULE=on ${GOPATH}/bin/golangci-lint run --timeout=5m --config ./.golangci.yml --fix
39
+
40
install: console
41
@echo "Installing console binary to '$(GOPATH)/bin/console'"
42
@mkdir -p $(GOPATH)/bin && cp -f $(PWD)/console $(GOPATH)/bin/console
0 commit comments