@eslint-types/typescript-eslint
Version:
TypeScript definitions for eslint-define-config
13 lines (11 loc) • 390 B
TypeScript
export interface Schema0 {
/**
* Whether to allow comparisons between nullable boolean variables and `true`.
*/
allowComparingNullableBooleansToTrue?: boolean;
/**
* Whether to allow comparisons between nullable boolean variables and `false`.
*/
allowComparingNullableBooleansToFalse?: boolean;
}
export type NoUnnecessaryBooleanLiteralCompareRuleOptions = [Schema0?];