From a4c4e198d6fadec37ec86d838bf227c752f4ecfb Mon Sep 17 00:00:00 2001 From: David Anson Date: Wed, 19 Jan 2022 18:37:01 -0800 Subject: [PATCH] Remove outdated test repo exception for ESLint. (#487) --- test/markdownlint-test-repos.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/markdownlint-test-repos.js b/test/markdownlint-test-repos.js index aefd9889..340a0e89 100644 --- a/test/markdownlint-test-repos.js +++ b/test/markdownlint-test-repos.js @@ -76,9 +76,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 = - [ /^[^:]+\/array-callback-return\.md: \d+: MD050\/.*$\r?\n?/gm ]; - return lintTestRepo(t, globPatterns, configPath, ignoreRes); + return lintTestRepo(t, globPatterns, configPath); }); test("https://github.com/mkdocs/mkdocs", (t) => {