From a83cd47119ffb0ed05a09ad1b57ea0870a09cff2 Mon Sep 17 00:00:00 2001 From: Camilo Gonzalez Date: Wed, 31 Jan 2018 00:16:19 -0500 Subject: [PATCH] build: add doc linting when runnning `make lint` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: https://github.com/nodejs/node/issues/18466 PR-URL: https://github.com/nodejs/node/pull/18472 Reviewed-By: Joyee Cheung Reviewed-By: Ruben Bridgewater Reviewed-By: Michaƫl Zasso --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 6ccce30085b1a9..fbe19b961bd4a7 100644 --- a/Makefile +++ b/Makefile @@ -1186,6 +1186,7 @@ lint: ## Run JS, C++, MD and doc linters. $(MAKE) lint-js || EXIT_STATUS=$$? ; \ $(MAKE) lint-cpp || EXIT_STATUS=$$? ; \ $(MAKE) lint-addon-docs || EXIT_STATUS=$$? ; \ + $(MAKE) lint-md || EXIT_STATUS=$$? ; \ exit $$EXIT_STATUS CONFLICT_RE=^>>>>>>> [0-9A-Fa-f]+|^<<<<<<< [A-Za-z]+