shoestrap/Makefile

12 lines
195 B
Makefile
Raw Normal View History

2019-11-14 18:22:46 +00:00
.PHONY: default test clean all
default: test
# Installs pre-commit hooks
.PHONY: install-hooks
install-hooks:
pre-commit install --install-hooks
.PHONY: test
test:
pre-commit run --all-files