mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
13 lines
466 B
JavaScript
13 lines
466 B
JavaScript
// @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);
|
|
});
|