From 44a25e7840b8be4a8996fd9bbd7e5073ae514c16 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. --- 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'