@eslint-types/typescript-eslint
Version:
TypeScript definitions for eslint-define-config
30 lines (28 loc) • 509 B
TypeScript
export interface Schema0 {
/**
* Whether to check intersection types.
*/
checkIntersections?: boolean;
/**
* Whether to check union types.
*/
checkUnions?: boolean;
/**
* Ordering of the groups.
*/
groupOrder?: Array<
| 'conditional'
| 'function'
| 'import'
| 'intersection'
| 'keyword'
| 'nullish'
| 'literal'
| 'named'
| 'object'
| 'operator'
| 'tuple'
| 'union'
>;
}
export type SortTypeConstituentsRuleOptions = [Schema0?];