@eslint-types/typescript-eslint
Version:
TypeScript definitions for eslint-define-config
15 lines (13 loc) • 412 B
TypeScript
export type Schema0 =
| ('all' | 'local')
| {
vars?: 'all' | 'local';
varsIgnorePattern?: string;
args?: 'all' | 'after-used' | 'none';
ignoreRestSiblings?: boolean;
argsIgnorePattern?: string;
caughtErrors?: 'all' | 'none';
caughtErrorsIgnorePattern?: string;
destructuredArrayIgnorePattern?: string;
};
export type NoUnusedVarsRuleOptions = [Schema0?];