From 7b810c48a9578b16d2e7e38b9bde525a4f4a8987 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sun, 13 Jun 2021 15:05:03 -0700 Subject: [PATCH] Add exclusion for test repo file with newly-reported violation (remove outdated exclusion). --- test/markdownlint-test-repos.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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");