run clang-format

This commit is contained in:
Joshua Vega 2026-01-24 12:48:05 -05:00
parent 71385a1fd5
commit 80d2ed5180
Signed by: jsvcycling
GPG key ID: E3DD60C9AC7DEF79
4 changed files with 28 additions and 19 deletions

View file

@ -1,3 +1,3 @@
#!/bin/bash
find . -regex '.*\.\(c\|h\)' -exec clang-format -i --sort-includes {} \;
find . -regex '.*\.\(c\|h\)' -not -path "./CMakeFiles/*" -exec clang-format -i --sort-includes {} \;