UNPKG

markdownlint-cli2

Version:

A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files with the `markdownlint` library

12 lines (8 loc) 241 B
// @ts-check import { parse } from "smol-toml"; /** * Parses a TOML string, returning the corresponding object. * @type {import("markdownlint").ConfigurationParser} */ const tomlParse = (text) => parse(text); export default tomlParse;