Svelte Guideline: SvelteKit — Use +page.js for data loading. Description: Load data before render. Do: load function in +page.js. Don't: onMount for data fetching. Good Example: export function load() {}. Bad Example: onMount(() => fetchData()). Severity: High. Docs: https://kit.svelte.dev/docs/load.