Skip to content

Commit f51ea66

Browse files
committed
chore: add make lint and make fmt
1 parent f0fe8b4 commit f51ea66

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,11 @@ run: all
3232
clean:
3333
$(RM) $(EXE) $(IMG) $(MAP)
3434
$(SWIFT) package clean
35+
36+
.PHONY: lint
37+
lint:
38+
$(SWIFT) format lint --enable-experimental-feature InlineArrayTypeSugar -rp .
39+
40+
.PHONY: fmt
41+
fmt:
42+
$(SWIFT) format format --enable-experimental-feature InlineArrayTypeSugar -rip .

0 commit comments

Comments
 (0)