UNPKG

mdclint

Version:

Markdown Linting

10 lines (8 loc) 268 B
import type { Options } from 'markdownlint' import type { Linter } from 'eslint' export interface PluginOptions { files?: string[] preset?: 'markdown' | 'mdc' markdownlint?: Options } export function mdcLint(options?: PluginOptions): Promise<Linter.LintResult>