安装工具

pip install cpplint    # 检查是否符合规范
pip install clang-format # 一键调整

调整

cpplint  *.cpp # 检查代码
clang-format -i *.cpp # 一键调整

相关文章: