Chatty LLMs should pipe down

This commit is contained in:
Ben Meadors
2026-05-10 10:20:10 -05:00
parent f6a954b97e
commit d79e62fd2a
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -196,6 +196,7 @@ firmware/
- Prefer `LOG_DEBUG`, `LOG_INFO`, `LOG_WARN`, `LOG_ERROR` for logging
- Use `assert()` for invariants that should never fail
- C++17 features are available (`std::optional`, structured bindings, `if constexpr`, etc.)
- **Keep code comments minimal — one or two lines, max.** Comment only when the _why_ isn't obvious from the code; never restate what the next line does. No multi-paragraph block comments explaining straightforward changes. The diff and commit message carry the rationale; the code carries the behavior.
### Naming Conventions