@eslint-types/typescript-eslint
Version:
TypeScript definitions for eslint-define-config
18 lines (16 loc) • 454 B
TypeScript
export interface Schema0 {
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
ignoreConditionalTests?: boolean;
ignoreMixedLogicalExpressions?: boolean;
ignorePrimitives?:
| {
bigint?: boolean;
boolean?: boolean;
number?: boolean;
string?: boolean;
[k: string]: unknown;
}
| true;
ignoreTernaryTests?: boolean;
}
export type PreferNullishCoalescingRuleOptions = [Schema0?];