From d9c3333c507d4692939148b5ef0f8edc6dc18edc Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 11 Feb 2025 20:03:59 -0800 Subject: chore: Add Makefile for linting and formatting tasks --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a61b92d --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: default lint format + +default: format lint + +format: + swiftformat . + +lint: + swiftlint + -- cgit v1.2.3