From 601910116d6435636260edb76c50efbd77819bb2 Mon Sep 17 00:00:00 2001 From: David Anson Date: Sat, 29 Nov 2025 17:28:32 -0800 Subject: [PATCH] Remove outdated table-column-style suppression from dotnet/docs test repo. --- test/markdownlint-test-repos-dotnet-docs.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/markdownlint-test-repos-dotnet-docs.mjs b/test/markdownlint-test-repos-dotnet-docs.mjs index 11c536f4..a419503a 100644 --- a/test/markdownlint-test-repos-dotnet-docs.mjs +++ b/test/markdownlint-test-repos-dotnet-docs.mjs @@ -9,5 +9,5 @@ test("https://github.com/dotnet/docs", (t) => { const rootDir = "./test-repos/dotnet-docs"; const globPatterns = [ join(rootDir, "**/*.md") ]; const configPath = join(rootDir, ".markdownlint-cli2.jsonc"); - return lintTestRepo(t, globPatterns, configPath, { "table-column-style": false }, true); + return lintTestRepo(t, globPatterns, configPath, undefined, true); });