We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b70565d commit 0c6f484Copy full SHA for 0c6f484
.markdown_link_check_config.json
@@ -0,0 +1,7 @@
1
+{
2
+ "ignorePatterns": [
3
+ {
4
+ "pattern": "^https://github\\.com"
5
+ }
6
+ ]
7
+}
Makefile
@@ -24,7 +24,7 @@ install-markdown-link-check:
24
25
.PHONY: markdown-link-check
26
markdown-link-check:
27
- @for f in $(ALL_DOCS); do $(MARKDOWN_LINK_CHECK) --quiet $$f; done
+ @for f in $(ALL_DOCS); do $(MARKDOWN_LINK_CHECK) --quiet --config .markdown_link_check_config.json $$f; done
28
29
.PHONY: install-markdown-lint
30
install-markdown-lint:
0 commit comments