UNPKG

remark-lint-no-missing-blank-lines

Version:

remark-lint rule to warn when missing blank lines

13 lines 401 B
export default remarkLintNoMissingBlankLines; /** * Configuration. */ export type Options = { /** * Allow tight list items (default: `false`). */ exceptTightLists?: boolean | null | undefined; }; declare const remarkLintNoMissingBlankLines: import("unified-lint-rule").Plugin<Root, Options | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map