Cpplint
cpplint is an open source lint-like tool developed by Google, designed to ensure that C++ code conforms to Google's coding style guides. It reads source code files and flags deviations from the style guide. It suffers from both false positives and false negatives. False positives can be eliminated by tagging lines with //NOLINT
. cpplint is implemented as Python script.
See also
Favorite site
- Wikipedia (en) Cpplint에 대한 설명
- google-styleguide project page 2
- AStyle과 Google Cpplint로 C++ 코드 스타일 자동화하기