From 2b2dc27f24a16a2afdf66d850a247f7ce02df6c8 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sun, 14 Aug 2022 18:59:53 -0700 Subject: [PATCH] Address linting violation introduced due to not being able to run locally. --- test/markdownlint-test-repos.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/markdownlint-test-repos.js b/test/markdownlint-test-repos.js index d87ac10b..1b619698 100644 --- a/test/markdownlint-test-repos.js +++ b/test/markdownlint-test-repos.js @@ -234,9 +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 - ]; + const ignoreRes = [ /^test-repos\/dotnet-docs\/docs\/standard\/base-types\/composite-formatting\.md: \d+: MD038\/.*$\r?\n?/gm ]; return lintTestRepo(t, globPatterns, configPath, ignoreRes); }); }