@eslint-types/typescript-eslint
Version:
TypeScript definitions for eslint-define-config
25 lines (23 loc) • 612 B
TypeScript
export type Schema0 =
| []
| [
| Value
| {
arrays?: ValueWithIgnore;
objects?: ValueWithIgnore;
imports?: ValueWithIgnore;
exports?: ValueWithIgnore;
functions?: ValueWithIgnore;
enums?: ValueWithIgnore;
generics?: ValueWithIgnore;
tuples?: ValueWithIgnore;
},
];
export type Value = 'always-multiline' | 'always' | 'never' | 'only-multiline';
export type ValueWithIgnore =
| 'always-multiline'
| 'always'
| 'never'
| 'only-multiline'
| 'ignore';
export type CommaDangleRuleOptions = Schema0;