2025-12-03 16:46:48 +00:00
|
|
|
## Style Guide
|
|
|
|
|
|
|
|
|
|
- Try to keep things in one function unless composable or reusable
|
2026-01-06 23:54:16 +00:00
|
|
|
- AVOID unnecessary destructuring of variables
|
2025-12-03 16:46:48 +00:00
|
|
|
- AVOID `try`/`catch` where possible
|
|
|
|
|
- AVOID `else` statements
|
|
|
|
|
- AVOID using `any` type
|
|
|
|
|
- AVOID `let` statements
|
|
|
|
|
- PREFER single word variable names where possible
|
|
|
|
|
- Use as many bun apis as possible like Bun.file()
|