Guide-Vest/format.sh

4 lines
166 B
Bash
Raw Normal View History

2024-05-24 22:06:52 +08:00
#!/bin/bash
find ./src -regex '.*\.\(cpp\|hpp\|cc\|cxx\|cu\|cuh\|h\)' | xargs clang-format -i \
-style="{BasedOnStyle: google, IndentWidth: 2, ColumnLimit: 100}"