Svelte & Frontend Standards Formatting (Biome) - Indentation : 2 spaces (enforced by biome.json) - Style : Space indent, recommended rules enabled - Ignore CSS files from formatting File Structure - Components in - UI components in - Each component exports from - Stores in Naming - Components : (e.g., ) - Utilities : (e.g., ) - CSS classes : Tailwind utility classes Svelte Patterns - Use reactive declarations: - Prefer for chart tooltips (Svelte 5 syntax) - Use for initialization and intervals - Clean up intervals in return function - Store pattern for global state (e.g., theme store) Compone…