C++代码质量检查工具-----Cpplint

cpplint.py suffers from both false positives and false negatives. False positives can be eliminated by tagging lines with // NOLINT (or // NOLINT(rule) to suppress only the incriminated rule category).

参考:
1.wiki介绍:https://en.wikipedia.org/wiki/Cpplint
2.Google代码规范:http://google.github.io/styleguide/cppguide.html
3.代码辅助工具:https://en.wikipedia.org/wiki/Programming_tool

你可能感兴趣的:(编程总结)