UNPKG

remark-lint-code-block-style

Version:

remark-lint rule to warn when code blocks do not adhere to a given style

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