From d029c46a7629f09f3553f95f2259dcd6915a8f17 Mon Sep 17 00:00:00 2001 From: David Anson Date: Mon, 14 Jun 2021 22:59:41 -0700 Subject: [PATCH] Remove test-repos exclusion that has been fixed in the repo. --- test/markdownlint-test-repos.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/markdownlint-test-repos.js b/test/markdownlint-test-repos.js index fbfb0e05..02327e39 100644 --- a/test/markdownlint-test-repos.js +++ b/test/markdownlint-test-repos.js @@ -134,12 +134,7 @@ if (existsSync(dotnetDocsDir)) { const rootDir = dotnetDocsDir; const globPatterns = [ join(rootDir, "**/*.md"), - "!" + join(rootDir, "samples/**/*.md"), - // MD044 newly detects an issue in this file - "!" + join( - rootDir, - "docs/framework/wcf/feature-details/configuring-iis-for-wcf.md" - ) + "!" + join(rootDir, "samples/**/*.md") ]; const configPath = join(rootDir, ".markdownlint.json"); return lintTestRepo(t, globPatterns, configPath);