UNPKG

eslint-plugin-mdx

Version:
13 lines (12 loc) 387 B
import type { Linter } from 'eslint'; export interface ESLintProcessor { supportsAutofix?: boolean; preprocess?(text: string, filename: string): Array<string | { text: string; filename: string; }>; postprocess?(messages: Linter.LintMessage[][], filename: string): Linter.LintMessage[]; } export interface ProcessorOptions { lintCodeBlocks: boolean; }