remark-lint-list-item-spacing
Version:
remark-lint rule to warn when list looseness is incorrect
14 lines • 466 B
TypeScript
export default remarkLintListItemSpacing;
/**
* Configuration.
*/
export type Options = {
/**
* Whether to follow CommonMark looseness instead of `markdown-style-guide`
* preference (default: `false`).
*/
checkBlanks?: boolean | null | undefined;
};
declare const remarkLintListItemSpacing: import("unified-lint-rule").Plugin<Root, Readonly<Options> | null | undefined>;
import type { Root } from 'mdast';
//# sourceMappingURL=index.d.ts.map