mirror of
https://github.com/miracle-wm-org/miracle-wm.git
synced 2024-11-30 02:09:10 +03:00
3 lines
165 B
Bash
Executable File
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 {} \; |