From ae149232a159b979aae9f71a338df916ea30d339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Wed, 30 Sep 2020 08:21:43 +0200 Subject: [PATCH] tools: exclude gyp from markdown link checker The changelog format used in gyp-next does not comply to the rules. PR-URL: https://github.com/nodejs/node/pull/35423 Reviewed-By: Ujjwal Sharma Reviewed-By: Jiawen Geng Reviewed-By: Richard Lau --- tools/doc/checkLinks.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/doc/checkLinks.js b/tools/doc/checkLinks.js index f3415f521cc6d5..aeb0fe5d03f232 100644 --- a/tools/doc/checkLinks.js +++ b/tools/doc/checkLinks.js @@ -31,6 +31,7 @@ function findMarkdownFilesRecursively(dirPath) { entry.name !== 'changelogs' && entry.name !== 'deps' && entry.name !== 'fixtures' && + entry.name !== 'gyp' && entry.name !== 'node_modules' && entry.name !== 'out' && entry.name !== 'tmp'