Проверка именования C++ по Google Style Guide
★ 7.2 · vibe-coding
cpp-naming-check is a Claude Code skill that validates C++ identifier names against the Google C++ Style Guide. It identifies the entity type — classes, structs, functions, variables, class members, constants, enumerators, macros, namespaces, type aliases, and template parameters — and applies the corresponding naming rule for each. Classes and functions require PascalCase, local variables use snake_case, class member variables take a trailing underscore, constants and enumerators follow kPascalCase, and macros must be UPPER_CASE. The skill is particularly useful during code review and refactoring sessions: it catches issues like Hungarian notation, incorrect acronym capitalization, and missing underscores, providing concrete before-and-after correction examples for every violation found.