From 392a184bc89a18fa782779f389c1f0be4d5ef0e8 Mon Sep 17 00:00:00 2001 From: David Anson Date: Tue, 16 Aug 2022 04:08:14 +0000 Subject: [PATCH] Update external repository tests to account for fixed violation. --- test/markdownlint-test-repos.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/markdownlint-test-repos.js b/test/markdownlint-test-repos.js index b5bc8c56..88dc454a 100644 --- a/test/markdownlint-test-repos.js +++ b/test/markdownlint-test-repos.js @@ -234,8 +234,7 @@ if (existsSync(dotnetDocsDir)) { const rootDir = dotnetDocsDir; const globPatterns = [ join(rootDir, "**/*.md") ]; const configPath = join(rootDir, ".markdownlint.json"); - const ignoreRes = [ /^test-repos\/dotnet-docs\/docs\/standard\/base-types\/composite-formatting\.md: \d+: MD038\/.*$\r?\n?/gm ]; - return lintTestRepo(t, globPatterns, configPath, ignoreRes); + return lintTestRepo(t, globPatterns, configPath); }); }