DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
855 Bytes
import type { AST } from 'svelte-eslint-parser';
import type { Linter } from 'eslint';
type Define = {
loc: AST.Position;
};
export declare class CommentDirectives {
private readonly reportUnusedDisableDirectives;
private readonly ruleId;
private readonly lineDisableDirectives;
private readonly blockDirectives;
constructor(options: {
reportUnusedDisableDirectives?: boolean;
ruleId: string;
});
filterMessages(messages: Linter.LintMessage[]): Linter.LintMessage[];
disableLine(line: number, rule: string | ((ruleId: string) => boolean), define: Define): void;
disableBlock(pos: AST.Position, rule: string | ((ruleId: string) => boolean), define: Define): void;
enableBlock(pos: AST.Position, rule: string | ((ruleId: string) => boolean), define: Define): void;
private block;
}
export {};