From 82c284c9dcb4a620545c2364ae9bcc8f2967d984 Mon Sep 17 00:00:00 2001 From: Nikita Vasilev Date: Fri, 20 Jan 2023 18:14:19 +0400 Subject: [PATCH] Update `Makefile` --- Makefile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1bd068d6c..856d64b45 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,19 @@ +all: bootstrap + +bootstrap: hook + mint bootstrap + hook: ln -sf ../../hooks/pre-commit .git/hooks/pre-commit chmod +x .git/hooks/pre-commit -.PHONY: hook \ No newline at end of file +mint: + mint bootstrap + +lint: + mint run swiftlint + +fmt: + mint run swiftformat Sources Tests + +.PHONY: all bootstrap hook mint lint fmt \ No newline at end of file