From 529f42cf4a8ffe0e2590b2cd58caff1462986aa6 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 eaebe4f2b55a4b..b69b8786a30701 100644 --- a/Makefile +++ b/Makefile @@ -1183,6 +1183,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]+