.PHONY: help all

help: ## Show this help message
	@echo "Scripts - Available Commands"
	@echo ""
	@echo "Setup & Development:"
	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' makefiles/dev.mk | \
		awk 'BEGIN {FS = ":.*?## "}; {printf "  %-30s %s\n", $$1, $$2}'

include makefiles/dev.mk

all: install-dev format lint type-check ## Install dependencies, format, lint, and type-check
