Files
beavergram/CLAUDE.md
T
2026-09-09 01:17:12 +02:00

551 B

Code Principles

  • Simplicity: Write simple, straightforward code
  • Readability: Make code easy to understand
  • Performance: Consider performance without sacrificing readability
  • Maintainability: Write code that's easy to update
  • Reusability: Create reusable components and functions
  • Less Code = Less Debt: Minimize code footprint
  • NEVER write comments - code should be self-documenting
  • Docstrings ONLY if explicitly asked

Checking commands

After writing code, always run:

make fmt
make check