1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-02 09:03:36 +00:00
ooot/format.sh

5 lines
218 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2022-04-08 21:48:33 +00:00
find src/ iname '*.cpp' -exec clang-format -i -style=file "{}" \;
find src/ iname '*.h' -exec clang-format -i -style=file "{}" \;
find include/ iname '*.h' -exec clang-format -i -style=file "{}" \;