markdownlint/test/markdownlint-test-repos-dotnet-docs.mjs

14 lines
466 B
JavaScript
Raw Normal View History

// @ts-check
import path from "node:path";
const { join } = path.posix;
import test from "ava";
import { lintTestRepo } from "./markdownlint-test-repos.mjs";
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);
});