Skip to content

Commit

Permalink
Add another make target
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyo committed Dec 21, 2023
1 parent b519900 commit e1fc2bc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,9 @@ fmt: ## Run "go fmt"
.PHONY: fmt

lint: ## Lint (using "golangci-lint")
golangci-lint run -v
golangci-lint run -v $(ARGS)
.PHONY: lint

lint-fix: ARGS=--fix
lint-fix: lint ### Lint and apply fixes (when applicable)
.PHONY: lint-fix

0 comments on commit e1fc2bc

Please sign in to comment.