Files
tendrils/CLAUDE.md

9 lines
472 B
Markdown
Raw Normal View History

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
- Don't mention claude in commit messages. Keep them to a single, short, descriptive sentence
- Always push after commiting
- Use git add -A so you don't miss files when committing
- Never use go build -- use go run instead
- Don't commit unless asked to