Remove outdated table-column-style suppression from dotnet/docs test repo.

This commit is contained in:
David Anson 2025-11-29 17:28:32 -08:00
parent 9ad696e257
commit 601910116d

View file

@ -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);
});