From 4bc9f0cac1205ed71bf355817ec7db09690398f8 Mon Sep 17 00:00:00 2001 From: lsy <70706700+stillfox-lee@users.noreply.github.com> Date: Mon, 4 Jul 2022 16:38:48 +0800 Subject: [PATCH] fix: update Makefile verify-mdlint (#1126) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 266f417e52..6f73b4dafb 100644 --- a/Makefile +++ b/Makefile @@ -184,7 +184,7 @@ verify-license: ### verify-mdlint: Verify markdown files lint rules. .PHONY: verify-mdlint verify-mdlint: - docker run -it --rm -v $(PWD):/work tmknom/markdownlint '**/*.md' --ignore node_modules + docker run -it --rm -v $(PWD):/work tmknom/markdownlint '**/*.md' --ignore node_modules --ignore CHANGELOG.md ### verify-all: Verify all verify- rules. .PHONY: verify-all