UNPKG

eslint-plugin-markdownlint

Version:
13 lines (10 loc) 245 B
import { lint } from "markdownlint/sync"; import { runAsWorker } from "synckit"; runAsWorker(async (text, config) => { const { text: errors } = await lint({ strings: { text }, config, resultVersion: 3, }); return errors; });