2025-11-28 15:18:41 -08:00
|
|
|
- DO NOT add comments to code unless something is *incredibly* subtle
|
|
|
|
|
- Use e.g. map[string]bool{} instead of make() wherever possible
|
|
|
|
|
- Use all-lowercase log messages
|
|
|
|
|
- Prepend log messages with [ERROR] if applicable
|
2025-11-28 15:44:28 -08:00
|
|
|
- Don't mention claude in commit messages. Keep them to a single, short, descriptive sentence
|
|
|
|
|
- Always push after commiting
|
2025-11-29 20:36:45 -08:00
|
|
|
- Use git add -A so you don't miss files when committing
|
2026-01-24 11:03:34 -08:00
|
|
|
- Never use go build -- use go vet instead
|
|
|
|
|
- DO NOT commit unless asked to
|