miracle-wm/tools/clang-tidy.sh
2024-05-01 16:51:10 -04:00

3 lines
165 B
Bash
Executable File

#!/bin/bash
find ./src/ -regex '.*\.\(cpp\|h\)' -exec clang-format -style=file -i {} \;
find ./tests/ -regex '.*\.\(cpp\|h\)' -exec clang-format -style=file -i {} \;