@eslint-types/jsdoc
Version:
TypeScript definitions for eslint-define-config
18 lines (16 loc) • 352 B
TypeScript
export interface Schema0 {
checkConstructors?: boolean;
checkGetters?: boolean;
checkSetters?: boolean;
contexts?: Array<
| string
| {
comment?: string;
context?: string;
}
>;
enableFixer?: boolean;
exemptedBy?: string[];
exemptNoArguments?: boolean;
}
export type RequireExampleRuleOptions = [Schema0?];