Svelte Guideline: Props — Use spread props. Description: Pass through unknown props. Do: {...$$restProps} on elements. Don't: Manual prop forwarding. Good Example: <button {...$$restProps}>. Bad Example: <button class={$$props.class}>. Severity: Low. Docs: https://svelte.dev/docs/basic-markup#attributes-and-props.