.PHONY: help test lint format

.DEFAULT: help
help:
	@echo "make test"
	@echo "       run tests"
	@echo "make lint"
	@echo "       run linter"
	@echo "make format"
	@echo "       run formatter"

test:
	@bash ./scripts/test.sh

lint:
	@bash ./scripts/lint.sh

format:
	@bash ./scripts/format.sh
