makectl 0.2.0

Generate and manage targets in your Makefiles
1
2
3
4
5
6
7
8
## makectl: description="Run Go linters"
.PHONY: lint
lint: ## Run linters
	golangci-lint run ./...

.PHONY: lint-fix
lint-fix: ## Run linters and fix issues
	golangci-lint run --fix ./...