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
"\\"parserOptions.project\\" has been set for @typescript-eslint/parser.
322
-
The file does not match your project config: tests/fixtures/invalidFileErrors/other/unknownFileType.unknown.
322
+
The file does not match your project config: other/unknownFileType.unknown.
323
323
Found unexpected extension \\"unknown\\" specified with the \\"extraFileExtensions\\" option. Did you mean \\".unknown\\"?
324
324
The extension for the file (.unknown) is non-standard. It should be added to your existing \\"parserOptions.extraFileExtensions\\"."
325
325
`;
326
326
327
327
exports[`parse() invalid file error messages "parserOptions.extraFileExtensions" is non-empty the extension does not match 1`] =`
328
328
"\\"parserOptions.project\\" has been set for @typescript-eslint/parser.
329
-
The file does not match your project config: tests/fixtures/invalidFileErrors/other/unknownFileType.unknown.
329
+
The file does not match your project config: other/unknownFileType.unknown.
330
330
The extension for the file (.unknown) is non-standard. It should be added to your existing \\"parserOptions.extraFileExtensions\\"."
331
331
`;
332
332
333
333
exports[`parse() invalid file error messages "parserOptions.extraFileExtensions" is non-empty the extension matches duplicate extension 1`] =`
334
334
"\\"parserOptions.project\\" has been set for @typescript-eslint/parser.
335
-
The file does not match your project config: tests/fixtures/invalidFileErrors/ts/notIncluded.ts.
335
+
The file does not match your project config: ts/notIncluded.ts.
336
336
You unnecessarily included the extension \\".ts\\" with the \\"extraFileExtensions\\" option. This extension is already handled by the parser by default.
337
337
The file must be included in at least one of the projects provided."
338
338
`;
339
339
340
340
exports[`parse() invalid file error messages "parserOptions.extraFileExtensions" is non-empty the extension matches the file isn't included 1`] =`
341
341
"\\"parserOptions.project\\" has been set for @typescript-eslint/parser.
342
-
The file does not match your project config: tests/fixtures/invalidFileErrors/other/notIncluded.vue.
342
+
The file does not match your project config: other/notIncluded.vue.
343
343
The file must be included in at least one of the projects provided."
344
344
`;
345
345
346
346
exports[`parse() invalid file error messages project includes errors for not included files 1`] =`
347
347
"\\"parserOptions.project\\" has been set for @typescript-eslint/parser.
348
-
The file does not match your project config: tests/fixtures/invalidFileErrors/ts/notIncluded.ts.
348
+
The file does not match your project config: ts/notIncluded.ts.
349
349
The file must be included in at least one of the projects provided."
350
350
`;
351
351
352
352
exports[`parse() invalid file error messages project includes errors for not included files 2`] =`
353
353
"\\"parserOptions.project\\" has been set for @typescript-eslint/parser.
354
-
The file does not match your project config: tests/fixtures/invalidFileErrors/ts/notIncluded.tsx.
354
+
The file does not match your project config: ts/notIncluded.tsx.
355
355
The file must be included in at least one of the projects provided."
356
356
`;
357
357
358
358
exports[`parse() invalid file error messages project includes errors for not included files 3`] =`
359
359
"\\"parserOptions.project\\" has been set for @typescript-eslint/parser.
360
-
The file does not match your project config: tests/fixtures/invalidFileErrors/js/notIncluded.js.
360
+
The file does not match your project config: js/notIncluded.js.
361
361
The file must be included in at least one of the projects provided."
362
362
`;
363
363
364
364
exports[`parse() invalid file error messages project includes errors for not included files 4`] =`
365
365
"\\"parserOptions.project\\" has been set for @typescript-eslint/parser.
366
-
The file does not match your project config: tests/fixtures/invalidFileErrors/js/notIncluded.jsx.
366
+
The file does not match your project config: js/notIncluded.jsx.
367
367
The file must be included in at least one of the projects provided."
0 commit comments