|
18 | 18 | * @property {boolean=} emitError |
19 | 19 | * @property {boolean=} emitWarning |
20 | 20 | * @property {string=} eslintPath |
| 21 | + * @property {string|string[]=} exclude |
| 22 | + * @property {string|string[]=} extensions |
21 | 23 | * @property {boolean=} failOnError |
22 | 24 | * @property {boolean=} failOnWarning |
23 | 25 | * @property {string|string[]=} files |
24 | | - * @property {string|string[]=} extensions |
25 | 26 | * @property {boolean=} fix |
26 | 27 | * @property {string|FormatterFunction=} formatter |
27 | 28 | * @property {boolean=} lintDirtyModulesOnly |
@@ -54,10 +55,11 @@ export type Options = { |
54 | 55 | emitError?: boolean | undefined; |
55 | 56 | emitWarning?: boolean | undefined; |
56 | 57 | eslintPath?: string | undefined; |
| 58 | + exclude?: (string | string[]) | undefined; |
| 59 | + extensions?: (string | string[]) | undefined; |
57 | 60 | failOnError?: boolean | undefined; |
58 | 61 | failOnWarning?: boolean | undefined; |
59 | 62 | files?: (string | string[]) | undefined; |
60 | | - extensions?: (string | string[]) | undefined; |
61 | 63 | fix?: boolean | undefined; |
62 | 64 | formatter?: (string | FormatterFunction) | undefined; |
63 | 65 | lintDirtyModulesOnly?: boolean | undefined; |
|
0 commit comments