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
+12-12
Original file line number
Diff line number
Diff line change
@@ -286,10 +286,11 @@ export default [
286
286
svelteFeatures: {
287
287
/* -- Experimental Svelte Features -- */
288
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,
289
+
// This option is for Svelte 5. The default value is `true`.
290
+
// If `false`, ESLint will not recognize rune symbols.
291
+
// If not configured this option, The parser will try to read the option from `compilerOptions.runes` from `svelte.config.js`.
292
+
// If `parserOptions.svelteConfig` is not specified and the file cannot be parsed by static analysis, it will behave as `true`.
293
+
runes:true,
293
294
/* -- Experimental Svelte Features -- */
294
295
/* It may be changed or removed in minor versions without notice. */
295
296
// Whether to parse the `generics` attribute.
@@ -311,10 +312,11 @@ For example in `.eslintrc.*`:
311
312
"svelteFeatures": {
312
313
/* -- Experimental Svelte Features -- */
313
314
/* 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,
315
+
// This option is for Svelte 5. The default value is `true`.
316
+
// If `false`, ESLint will not recognize rune symbols.
317
+
// If not configured this option, The parser will try to read the option from `compilerOptions.runes` from `svelte.config.js`.
318
+
// If `parserOptions.svelteConfig` is not specified and the file cannot be parsed by static analysis, it will behave as `true`.
319
+
"runes":true,
318
320
/* -- Experimental Svelte Features -- */
319
321
/* It may be changed or removed in minor versions without notice. */
320
322
// Whether to parse the `generics` attribute.
@@ -329,7 +331,8 @@ For example in `.eslintrc.*`:
329
331
330
332
**_This is an experimental feature. It may be changed or removed in minor versions without notice._**
331
333
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.
334
+
If you install Svelte v5 the parser will be able to parse runes, and will also be able to parse `*.js` and `*.ts` files.
335
+
If you don't want to use Runes, you may need to configure. Please read [parserOptions.svelteFeatures](#parseroptionssveltefeatures) for more details.
333
336
334
337
When using this mode in an ESLint configuration, it is recommended to set it per file pattern as below.
335
338
@@ -383,15 +386,13 @@ For example in `.eslintrc.*`:
0 commit comments