You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
855 B
TypeScript

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 {};