We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3134af commit a4f2f81Copy full SHA for a4f2f81
Makefile
@@ -587,6 +587,11 @@ endif
587
yamllint:
588
@docker run --rm $$(tty -s && echo "-it" || echo) -v $(PWD):/data cytopia/yamllint:latest /data --config-file /data/.yamllint --no-warnings
589
590
+MD_FILES := $(shell find . -iname "*.md")
591
+.PHONY: linkcheck
592
+linkcheck:
593
+ docker run --init -w /input -v $(PWD):/input --rm -it ghcr.io/tcort/markdown-link-check:3.12 -q -p $(MD_FILES)
594
+
595
## --------------------------------------
596
## Cleanup / Verification
597
0 commit comments