Svelte Guideline: Lifecycle — Use onDestroy sparingly. Description: Only when onMount cleanup not possible. Do: onDestroy for non-mount cleanup. Don't: onDestroy for mount-related cleanup. Good Example: onDestroy for store unsubscribe. Bad Example: onDestroy(() => clearInterval(id)). Severity: Low. Docs: .