From 5e4c6a5befbc0d6dc628b331b100af7db880e3b3 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Sat, 3 Jan 2026 11:01:33 -0500 Subject: [PATCH] Add minimal comment style guidelines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Document preference for: - Minimal comments (code should be self-documenting) - No decorative comment blocks - Only comment non-obvious logic 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index e513b14..70df4b6 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -10,6 +10,11 @@ - Small, focused functions - Follow existing patterns in src/ +## Code Style +- Minimal comments - code should be self-documenting +- No decorative comment blocks (===, ---, etc.) +- Only comment non-obvious logic + ## Common Commands - Build: make - Run: ./orbit_sim [config_file]