From b133beaa77da9100458c02a32bac891e55b0355a Mon Sep 17 00:00:00 2001 From: David Anson Date: Tue, 29 Nov 2022 04:11:20 +0000 Subject: [PATCH] Remove outdated exclusions from external repository tests. --- test/markdownlint-test-repos.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/markdownlint-test-repos.js b/test/markdownlint-test-repos.js index f894c75d..7d32e9c8 100644 --- a/test/markdownlint-test-repos.js +++ b/test/markdownlint-test-repos.js @@ -238,10 +238,6 @@ if (existsSync(v8v8DevDir)) { const rootDir = v8v8DevDir; const globPatterns = [ join(rootDir, "src/**/*.md") ]; const configPath = join(rootDir, ".markdownlint.json"); - const ignoreRes = [ - /^[^:]+: \d+: (MD049|MD051)\/.*$\r?\n?/gm, - /^test-repos\/v8-v8-dev\/src\/blog\/oilpan-library\.md: \d+: MD053\/.*$\r?\n?/gm - ]; - return lintTestRepo(t, globPatterns, configPath, ignoreRes); + return lintTestRepo(t, globPatterns, configPath); }); }