coding-standard-cpp
Installation
SKILL.md
C++ Coding Standards
When reviewing or generating C++ code, follow these rules:
File Naming
- Source files: snake_case or PascalCase with
.cppextension (e.g.,user_service.cpporUserService.cpp) - Header files: Same base name with
.h,.hpp, or.hxxextension - Template files:
.tppor.inlfor template implementations - Be consistent within a project