summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-11 20:03:59 -0800
committerFuwn <[email protected]>2025-02-11 20:03:59 -0800
commitd9c3333c507d4692939148b5ef0f8edc6dc18edc (patch)
tree2a7ec12ff4875c933506df5d14dd88ee285313a3
parentfeat: Initial commit (diff)
downloadswift502-d9c3333c507d4692939148b5ef0f8edc6dc18edc.tar.xz
swift502-d9c3333c507d4692939148b5ef0f8edc6dc18edc.zip
chore: Add Makefile for linting and formatting tasks
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
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
+