UNPKG

remark-lint-ordered-list-marker-value

Version:

remark-lint rule to check the marker value of ordered lists

12 lines 383 B
export default remarkLintOrderedListMarkerValue; /** * Configuration. */ export type Options = Style | "consistent"; /** * Counter style. */ export type Style = "one" | "ordered" | "single"; declare const remarkLintOrderedListMarkerValue: import("unified-lint-rule").Plugin<Root, Options | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map