diff --git a/test/markdownlint-test-repos.js b/test/markdownlint-test-repos.js index 14bc3618..ea48a6e9 100644 --- a/test/markdownlint-test-repos.js +++ b/test/markdownlint-test-repos.js @@ -102,11 +102,10 @@ if (existsSync(dotnetDocsDir)) { const globPatterns = [ join(rootDir, "**/*.md"), "!" + join(rootDir, "samples/**/*.md"), - // A table parsing change in markdown-it v12 causes a new issue here + // MD044 newly detects an issue in this file "!" + join( rootDir, - "docs/standard/base-types/" + - "regular-expression-example-scanning-for-hrefs.md" + "docs/framework/wcf/feature-details/configuring-iis-for-wcf.md" ) ]; const configPath = join(rootDir, ".markdownlint.json");