diff --git a/Makefile b/Makefile index 3ce1264..f24714a 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,10 @@ help: ## Display this help. @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-20s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST) +.PHONY: todos +todos: ## Find TODOs in the codebase + @rg TODO + ##@ Linting .PHONE: spell