UNPKG

remark-lint-checkbox-character-style

Version:

remark-lint rule to check list item checkbox characters

21 lines 668 B
export default remarkLintCheckboxCharacterStyle; /** * Configuration. */ export type Options = Styles | "consistent"; /** * Styles. */ export type Styles = { /** * Preferred style to use for checked checkboxes (default: `'consistent'`). */ checked?: "X" | "x" | "consistent" | null | undefined; /** * Preferred style to use for unchecked checkboxes (default: `'consistent'`). */ unchecked?: "\t" | " " | "consistent" | null | undefined; }; declare const remarkLintCheckboxCharacterStyle: import("unified-lint-rule").Plugin<Root, Options | null | undefined>; import type { Root } from 'mdast'; //# sourceMappingURL=index.d.ts.map