Skip to content

Commit fc8a933

Browse files
committed
add lint target
1 parent 6f39529 commit fc8a933

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sqldef.wasm: go.mod go.sum sqldef-wasm.go
55
dev: sqldef.wasm
66
@echo "Starting HTTP server at http://localhost:6543"
77
@python3 -m http.server 6543
8-
.PHONEY: devk
8+
.PHONEY: dev
99

1010
format:
1111
go fmt .
@@ -15,3 +15,7 @@ update:
1515
go get -u -t .
1616
go mod tidy
1717
.PHONY: update
18+
19+
lint:
20+
GOOS=js GOARCH=wasm go vet .
21+
.PHONY: lint

0 commit comments

Comments
 (0)