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
Svelte 5 allows state management using runes. On the other hand, we can also manage state using store. This rule prohibits the use of store, thereby restricting state management to runes only.
Description
DO not use store. Please use runes instead.
Examples
<!--✓GOOD-->letcount=$state(0);/* ✗ BAD */import{writable,readable,derived}from'svelte/store';
Additional comments
No response
The text was updated successfully, but these errors were encountered:
Motivation
Svelte 5 allows state management using runes. On the other hand, we can also manage state using store. This rule prohibits the use of store, thereby restricting state management to runes only.
Description
DO not use store. Please use runes instead.
Examples
Additional comments
No response
The text was updated successfully, but these errors were encountered: