Skip to content

Commit

Permalink
fix run command for golangci-lint in makefile (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhendrixMSFT authored Jul 26, 2022
1 parent a3e806e commit d88c0a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ tidy: ; $(info $(M) running go mod tidy…) @ ## Run tidy
$Q $(GO) mod tidy

.PHONY: lint
lint: ; $(info $(M) running golint…) @ ## Run golint
$Q $(GOLINT) ./...
lint: ; $(info $(M) running golangci-lint…) @ ## Run golangci-lint
$Q $(GOLINT) run

.PHONY: staticcheck
staticcheck: ; $(info $(M) running staticcheck…) @ ## Run staticcheck
Expand Down

0 comments on commit d88c0a0

Please sign in to comment.