diff options
| author | Fuwn <[email protected]> | 2025-02-11 20:03:59 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-02-11 20:03:59 -0800 |
| commit | d9c3333c507d4692939148b5ef0f8edc6dc18edc (patch) | |
| tree | 2a7ec12ff4875c933506df5d14dd88ee285313a3 | |
| parent | feat: Initial commit (diff) | |
| download | swift502-d9c3333c507d4692939148b5ef0f8edc6dc18edc.tar.xz swift502-d9c3333c507d4692939148b5ef0f8edc6dc18edc.zip | |
chore: Add Makefile for linting and formatting tasks
| -rw-r--r-- | Makefile | 10 |
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 + |