cpp
Installation
SKILL.md
Google C++ Style Guide
Official Google C++ coding standards for consistent, maintainable code.
Golden Rules
- Target C++20 — avoid non-standard extensions
- 80-character line limit — for readability
- 2-space indentation — no tabs
- Use
constliberally — for correctness and thread safety - Avoid exceptions — Google code doesn't use C++ exceptions
- Smart pointers for ownership —
std::unique_ptrandstd::shared_ptr - Header guards — use
PROJECT_PATH_FILE_H_format