diff --git a/Makefile b/Makefile index 21cd8fb..a4af5ac 100644 --- a/Makefile +++ b/Makefile @@ -4,18 +4,15 @@ venv: @curl -LsSf https://astral.sh/uv/install.sh | sh @uv venv --python '3.12' - .PHONY: help help: ## Display this help screen @echo -e "\033[1mAvailable commands:\033[0m" @grep -E '^[a-z.A-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-18s\033[0m %s\n", $$1, $$2}' | sort - .PHONY: clean clean: ## clean the folder @git clean -d -X -f - .PHONY: fmt fmt: venv ## Run autoformatting and linting @uv pip install pre-commit