@eslint-types/typescript-eslint
Version:
TypeScript definitions for eslint-define-config
13 lines (11 loc) • 385 B
TypeScript
export interface Schema0 {
/**
* Whether to ignore constant loop conditions, such as `while (true)`.
*/
allowConstantLoopConditions?: boolean;
/**
* Whether to not error when running with a tsconfig that has strictNullChecks turned.
*/
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
}
export type NoUnnecessaryConditionRuleOptions = [Schema0?];