Remove test-repos exclusion that has been fixed in the repo.

This commit is contained in:
David Anson 2021-06-14 22:59:41 -07:00
parent 5f0f7653e0
commit d029c46a76

View file

@ -134,12 +134,7 @@ if (existsSync(dotnetDocsDir)) {
const rootDir = dotnetDocsDir; const rootDir = dotnetDocsDir;
const globPatterns = [ const globPatterns = [
join(rootDir, "**/*.md"), join(rootDir, "**/*.md"),
"!" + join(rootDir, "samples/**/*.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"
)
]; ];
const configPath = join(rootDir, ".markdownlint.json"); const configPath = join(rootDir, ".markdownlint.json");
return lintTestRepo(t, globPatterns, configPath); return lintTestRepo(t, globPatterns, configPath);