generated from ik-workshop/workshop-blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (16 loc) · 510 Bytes
/
Makefile
File metadata and controls
22 lines (16 loc) · 510 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.EXPORT_ALL_VARIABLES:
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
setup: ## Setup dependencies
@brew bundle
hooks: ## install pre commit.
@pre-commit install
@pre-commit gc
@pre-commit autoupdate
install: ## Install pre-commit hooks
@pre-commit install
@pre-commit gc
uninstall: ## Uninstall hooks
@pre-commit uninstall
validate: ## Validate files with pre-commit hooks
@pre-commit run --all-files