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: README.md
+46-2
Original file line number
Diff line number
Diff line change
@@ -245,9 +245,34 @@ For example in `.eslintrc.*`:
245
245
}
246
246
```
247
247
248
+
### parserOptions.svelteConfig
249
+
250
+
If you are using `eslint.config.js`, you can provide a `svelte.config.js` in the `parserOptions.svelteConfig` property.
251
+
252
+
For example:
253
+
254
+
```js
255
+
importsvelteConfigfrom"./svelte.config.js";
256
+
exportdefault [
257
+
{
258
+
files: ["**/*.svelte", "*.svelte"],
259
+
languageOptions: {
260
+
parser: svelteParser,
261
+
parserOptions: {
262
+
svelteConfig: svelteConfig,
263
+
},
264
+
},
265
+
},
266
+
];
267
+
```
268
+
269
+
If `parserOptions.svelteConfig` is not specified, some config will be statically parsed from the `svelte.config.js` file.
270
+
271
+
The `.eslintrc.*` style configuration cannot load `svelte.config.js` because it cannot use ESM. We recommend using the `eslint.config.js` style configuration.
272
+
248
273
### parserOptions.svelteFeatures
249
274
250
-
You can use `parserOptions.svelteFeatures` property to specify how to parse related to Svelte features. For example:
275
+
You can use `parserOptions.svelteFeatures` property to specify how to parse related to Svelte features.
251
276
252
277
For example in `eslint.config.js`:
253
278
@@ -259,6 +284,12 @@ export default [
259
284
parser: svelteParser,
260
285
parserOptions: {
261
286
svelteFeatures: {
287
+
/* -- Experimental Svelte Features -- */
288
+
/* It may be changed or removed in minor versions without notice. */
289
+
// If true, it will analyze Runes.
290
+
// By default, it will try to read `compilerOptions.runes` from `svelte.config.js`.
291
+
// However, note that if `parserOptions.svelteConfig` is not specified and the file cannot be parsed by static analysis, it will behave as `false`.
292
+
runes:false,
262
293
/* -- Experimental Svelte Features -- */
263
294
/* It may be changed or removed in minor versions without notice. */
264
295
// Whether to parse the `generics` attribute.
@@ -278,6 +309,12 @@ For example in `.eslintrc.*`:
278
309
"parser":"svelte-eslint-parser",
279
310
"parserOptions": {
280
311
"svelteFeatures": {
312
+
/* -- Experimental Svelte Features -- */
313
+
/* It may be changed or removed in minor versions without notice. */
314
+
// If true, it will analyze Runes.
315
+
// By default, it will try to read `compilerOptions.runes` from `svelte.config.js`.
316
+
// However, note that if the file cannot be parsed by static analysis, it will behave as false.
317
+
"runes":false,
281
318
/* -- Experimental Svelte Features -- */
282
319
/* It may be changed or removed in minor versions without notice. */
283
320
// Whether to parse the `generics` attribute.
@@ -292,20 +329,22 @@ For example in `.eslintrc.*`:
292
329
293
330
**_This is an experimental feature. It may be changed or removed in minor versions without notice._**
294
331
295
-
If you install Svelte v5 the parser will be able to parse runes, and will also be able to parse `*.js` and `*.ts` files.
332
+
If you install Svelte v5 and turn on runes (`compilerOptions.runes` in `svelte.config.js` or `parserOptions.svelteFeatures.runes` in ESLint config is `true`), the parser will be able to parse runes, and will also be able to parse `*.js` and `*.ts` files.
296
333
297
334
When using this mode in an ESLint configuration, it is recommended to set it per file pattern as below.
298
335
299
336
For example in `eslint.config.js`:
300
337
301
338
```js
339
+
importsvelteConfigfrom"./svelte.config.js";
302
340
exportdefault [
303
341
{
304
342
files: ["**/*.svelte", "*.svelte"],
305
343
languageOptions: {
306
344
parser: svelteParser,
307
345
parserOptions: {
308
346
parser:"...",
347
+
svelteConfig,
309
348
/* ... */
310
349
},
311
350
},
@@ -315,6 +354,7 @@ export default [
315
354
languageOptions: {
316
355
parser: svelteParser,
317
356
parserOptions: {
357
+
svelteConfig,
318
358
/* ... */
319
359
},
320
360
},
@@ -325,6 +365,7 @@ export default [
325
365
parser: svelteParser,
326
366
parserOptions: {
327
367
parser:"...(ts parser)...",
368
+
svelteConfig,
328
369
/* ... */
329
370
},
330
371
},
@@ -342,13 +383,15 @@ For example in `.eslintrc.*`:
0 commit comments