- Write modern, safe, and properly typed code with TypeScript
- Utilize Svelte 5 runes for reactivity
- Implement stores with native JavaScript getters and setters
- Follow accessibility best practices
- Keep components modular (<150-200 lines)
- snake_case for variable and function names, for files use kebab-case (e.g., user-store.svelte.ts)
- When using colors in CSS, use vars (e.g., hsl(var(--primary))), all colors use hsl format
const obj = {
  get data() {
    console.log('getter called!');
    return { value: 42 };
  }
};
// With direct object
console.log(obj.data.value);     // logs: "getter called!" then 42
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | {"lastUpload":"2021-04-29T10:45:18.447Z","extensionVersion":"v3.4.3"} |