1 Star 0 Fork 38

floger/AimRT

forked from AGIROS/AimRT 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
format.sh 941 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhangyi 提交于 2024-10-14 10:00 . update
#!/bin/bash
clang_format_version=$(clang-format --version 2>&1)
if [[ $clang_format_version == *"version 15"* ]]; then
echo "use clang-format-15"
else
echo "error, can not find clang-format-15"
exit 1
fi
# clang-format, version v15 is required
find ./src -regex '.*\.cc\|.*\.h\|.*\.proto' -and -not -regex '.*\.pb\.cc\|.*\.pb\.h' | xargs clang-format -i --style=file
echo "clang-format done"
# cmake-format, apt install cmake-format
{ find . -maxdepth 1 -name "CMakeLists.txt"; find ./src -name "CMakeLists.txt"; } | xargs cmake-format -c ./.cmake-format.py -i
{ find ./cmake -name "*.cmake"; find ./src -name "*.cmake"; } | xargs cmake-format -c ./.cmake-format.py -i
echo "cmake-format done"
# autopep8, apt install python3-autopep8
{ find . -maxdepth 1 -name "*.py" ! -name "*pb2.py" -print; find ./src -name "*.py" ! -name "*pb2.py" -print; } | xargs autopep8 -i --global-config ./.pycodestyle
echo "python format done"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/floger/AimRT.git
git@gitee.com:floger/AimRT.git
floger
AimRT
AimRT
master

搜索帮助