From 23f709b0dce675e4544347d78b03cea179f56501 Mon Sep 17 00:00:00 2001 From: David Anson Date: Wed, 3 Sep 2025 03:08:02 +0000 Subject: [PATCH] Address new code analysis issues from previous commit. --- test/markdownlint-test-scenarios.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/markdownlint-test-scenarios.mjs b/test/markdownlint-test-scenarios.mjs index c98b4f9c..5321f33b 100644 --- a/test/markdownlint-test-scenarios.mjs +++ b/test/markdownlint-test-scenarios.mjs @@ -33,7 +33,7 @@ function createTestForFile(file) { .filter((error) => !!error.ruleInformation); for (const error of errors) { error.ruleInformation = - error.ruleInformation.replace(/v\d+\.\d+\.\d+/, "v0.0.0"); + error.ruleInformation.replace(/v\d+\.\d+\.\d+/, "v0.0.0"); } // Match identified issues by MD### markers const marker = /\{(MD\d+)(?::([-+]?)(\d+))?\}/g;