cpp代码格式刷
安装工具
pip install cpplint # 检查是否符合规范
pip install clang-format # 一键调整
调整
cpplint *.cpp # 检查代码
clang-format -i *.cpp # 一键调整
调整目录下所有的文件
find . -name \( -name "*.mm" -o -name "*.m" -o -name "*.cpp"\) -exec clang-format -sort-includes=false -style="{BasedOnStyle: llvm, IndentWidth: 4}" -i {} \;

浙公网安备 33010602011771号