UNPKG

remark-lint-ordered-list-marker-style

Version:

remark-lint rule to warn when the markers of ordered lists violate a given style

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