Svelte Guideline: Bindings — Use bind:group for radios/checkboxes. Description: Simplified group handling. Do: bind:group for radio/checkbox groups. Don't: Manual checked handling. Good Example: <input type="radio" bind:group={selected}>. Bad Example: <input type="radio" checked={selected === value}>. Severity: Low. Docs: .