From e75d9e371269a4e46bffa6b3dd1fc7d040e82750 Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Tue, 30 Sep 2025 13:34:10 +0200 Subject: add mdedit --- vendor/github.com/yuin/goldmark/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 vendor/github.com/yuin/goldmark/Makefile (limited to 'vendor/github.com/yuin/goldmark/Makefile') diff --git a/vendor/github.com/yuin/goldmark/Makefile b/vendor/github.com/yuin/goldmark/Makefile new file mode 100644 index 0000000..7bef51b --- /dev/null +++ b/vendor/github.com/yuin/goldmark/Makefile @@ -0,0 +1,16 @@ +.PHONY: test fuzz lint gen + +lint: + golangci-lint run -c .golangci.yml ./... + +test: + go test -coverprofile=profile.out -coverpkg=github.com/yuin/goldmark,github.com/yuin/goldmark/ast,github.com/yuin/goldmark/extension,github.com/yuin/goldmark/extension/ast,github.com/yuin/goldmark/parser,github.com/yuin/goldmark/renderer,github.com/yuin/goldmark/renderer/html,github.com/yuin/goldmark/text,github.com/yuin/goldmark/util ./... + +cov: test + go tool cover -html=profile.out + +fuzz: + cd ./fuzz && go test -fuzz=FuzzDefault + +gen: + go generate ./... -- cgit v1.3.1