UNPKG

remark-lint-list-item-indent

Version:

remark-lint rule to check the spacing between list item bullets and content

8 lines 294 B
export default remarkLintListItemIndent; /** * Configuration. */ export type Options = "mixed" | "one" | "tab"; declare const remarkLintListItemIndent: import("unified-lint-rule").Plugin<Root, Options | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map