File size: 344 Bytes
bc20498 |
1 2 3 4 5 6 7 8 |
import type { Linter } from 'eslint';
export * as meta from '../meta';
/** preprocess */
export declare function preprocess(code: string, filename: string): string[];
/** postprocess */
export declare function postprocess([messages]: Linter.LintMessage[][], filename: string): Linter.LintMessage[];
export declare const supportsAutofix = true;
|