From aa8aa83db8d76efcbc0f0594d31c2f126892f082 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sat, 23 Oct 2021 12:42:22 -0700 Subject: [PATCH] Update markdownlint-test-repos.js to ignore two files with newly-reported issues in dotnet-docs repo. --- test/markdownlint-test-repos.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/markdownlint-test-repos.js b/test/markdownlint-test-repos.js index 1d76bb9a..a3962444 100644 --- a/test/markdownlint-test-repos.js +++ b/test/markdownlint-test-repos.js @@ -150,6 +150,15 @@ if (existsSync(dotnetDocsDir)) { "!" + join( rootDir, "docs/standard/serialization/binaryformatter-security-guide.md" + ), + "!" + join( + rootDir, + "docs/framework/windows-workflow-foundation/authoring-workflows-" + + "activities-and-expressions-using-imperative-code.md" + ), + "!" + join( + rootDir, + "docs/spark/how-to-guides/deploy-worker-udf-binaries.md" ) ]; const configPath = join(rootDir, ".markdownlint.json");