You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/parser/README.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -213,19 +213,19 @@ Default `false`.
213
213
214
214
This option allows you to request that when the `project` setting is specified, files will be allowed when not included in the projects defined by the provided `tsconfig.json` files. **Using this option will incur significant performance costs. This option is primarily included for backwards-compatibility.** See the **`project`** section above for more information.
215
215
216
-
### `parserOptions.program`
216
+
### `parserOptions.programs`
217
217
218
218
Default `undefined`.
219
219
220
-
This option allows you to programmatically provide an instance of a TypeScript Program object that will provide type information to rules.
221
-
This will override any program that would have been computed from `parserOptions.project` or `parserOptions.createDefaultProgram`.
222
-
All linted files must be part of the provided program.
220
+
This option allows you to programmatically provide an array of one or more instances of a TypeScript Program object that will provide type information to rules.
221
+
This will override any programs that would have been computed from `parserOptions.project` or `parserOptions.createDefaultProgram`.
222
+
All linted files must be part of the provided program(s).
223
223
224
224
## Utilities
225
225
226
226
### `createProgram(configFile, projectDirectory)`
227
227
228
-
This serves as a utility method for users of the `parserOptions.program` feature to create a TypeScript program instance from a config file.
228
+
This serves as a utility method for users of the `parserOptions.programs` feature to create a TypeScript program instance from a config file.
229
229
230
230
```ts
231
231
declarefunction createProgram(
@@ -238,10 +238,10 @@ Example usage in .eslintrc.js:
`You have set parserOptions.programs to an empty array. This will cause all files to not be found in existing programs. Either provide one or more existing TypeScript Program instances in the array, or remove the parserOptions.programs setting.`,
278
+
);
279
+
}
280
+
extra.programs=options.programs;
274
281
log(
275
-
'parserOptions.program was provided, so parserOptions.project will be ignored.',
282
+
'parserOptions.programs was provided, so parserOptions.project will be ignored.',
276
283
);
277
284
}
278
285
279
-
if(!extra.program){
286
+
if(!extra.programs){
280
287
// providing a program overrides project resolution
'You have set parserOptions.programs to an empty array. This will cause all files to not be found in existing programs. Either provide one or more existing TypeScript Program instances in the array, or remove the parserOptions.programs setting.',
302
+
);
303
+
});
304
+
305
+
it(`first matching provided program instance is returned in result`,()=>{
0 commit comments