all repos — gomponents @ f277d1942e9f2ec1ff4a3bc3c409e864103b506b

HTML components in pure Go

Makefile (view raw)

1
2
3
4
5
6
7
8
9
10
11
.PHONY: cover lint test

cover:
	go tool cover -html=cover.out

lint:
	golangci-lint run

test:
	go test -coverprofile=cover.out -mod=readonly ./...