This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
token-gated-economy/Makefile

15 lines
293 B
Makefile
Raw Normal View History

.PHONY: install lint typecheck check
install:
git config core.hooksPath .githooks
chmod +x .githooks/pre-commit .githooks/pre-push
@echo "Git hooks activated. typecheck + lint will run on every commit and push."
lint:
pnpm run lint
typecheck:
pnpm run typecheck
check: typecheck lint