9 lines
227 B
Bash
Executable File
9 lines
227 B
Bash
Executable File
|
|
|
|
# sudo apt install clang-format
|
|
find . -regex '.*\.\(cpp\|hpp\|cu\|c\|h\)' -exec clang-format -style=file -i {} \;
|
|
|
|
# sudo apt install libc++-dev clang-tidy
|
|
#find . -regex '.*\.\(cpp\|hpp\|cu\|c\|h\)' -exec clang-tidy {} \;
|
|
|