From 9fcce62e20ffdeea746b29fd63582361cbdc9876 Mon Sep 17 00:00:00 2001 From: David Anson Date: Wed, 5 Oct 2022 06:03:44 +0000 Subject: [PATCH] Remove outdated exclusion from external repository tests. --- test/markdownlint-test-repos.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/markdownlint-test-repos.js b/test/markdownlint-test-repos.js index 86e3c794..fdf58ca8 100644 --- a/test/markdownlint-test-repos.js +++ b/test/markdownlint-test-repos.js @@ -131,10 +131,7 @@ test("https://github.com/eslint/eslint", (t) => { const rootDir = "./test-repos/eslint-eslint"; const globPatterns = [ join(rootDir, "docs/**/*.md") ]; const configPath = join(rootDir, ".markdownlint.yml"); - const ignoreRes = [ - /^[^:]+: \d+: MD051\/.*$\r?\n?/gm, - /^test-repos\/eslint-eslint\/docs\/src\/developer-guide\/nodejs-api\.md: \d+: MD053\/.*$\r?\n?/gm - ]; + const ignoreRes = [ /^[^:]+: \d+: MD051\/.*$\r?\n?/gm ]; return lintTestRepo(t, globPatterns, configPath, ignoreRes); });