Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 400 Bytes

File metadata and controls

10 lines (8 loc) · 400 Bytes

Critical Rules

Produce code following LEAN, CLEAN, MINIMAL but thoughtful YAGNI style

  • No semicolons in TypeScript
  • Use bun as package manager
  • Run bun run lint before completing work
  • Always use git mv (not mv) when moving or renaming files to preserve git history
  • Use early return, avoid if-else-elseif chains
  • Always refer to official doc, never assume you know everything