Svelte Guideline: Logic — Always use keys in {#each}. Description: Proper list reconciliation. Do: (item.id) for unique key. Don't: Index as key or no key. Good Example: {#each items as item (item.id)}. Bad Example: {#each items as item, i (i)}. Severity: High. Docs: .