Update to use named exports via / /async /promise /sync, simplify references via self-referencing, refine examples.

This commit is contained in:
David Anson 2024-12-03 19:58:28 -08:00
parent e41f034bef
commit 8da43dd246
96 changed files with 635 additions and 548 deletions

View file

@ -2,12 +2,12 @@
import test from "ava";
import { globby } from "globby";
import markdownlint from "../lib/markdownlint.mjs";
import { lint } from "markdownlint/promise";
// Parses all Markdown files in all package dependencies
test("parseAllFiles", async(t) => {
t.plan(1);
const files = await globby("**/*.{md,markdown}");
await markdownlint.promises.markdownlint({ files });
await lint({ files });
t.pass();
});