Add exclusion for test repo file with newly-reported violation (remove outdated exclusion).

This commit is contained in:
David Anson 2021-06-13 15:05:03 -07:00
parent 72543a82e7
commit 7b810c48a9

View file

@ -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");