We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0aadda commit 0641a5fCopy full SHA for 0641a5f
contrib/scripts/clangFormatWholeProject.sh
@@ -0,0 +1,10 @@
1
+# This script is making the following assumptions:
2
+# - 1) You are running the script from the project root directory
3
+# - 2) clang-format is in your $PATH
4
+
5
+find src/ -iname *.h* -o -iname *.c* | xargs clang-format -i
6
+find include/ -iname *.h* -o -iname *.c* | xargs clang-format -i
7
+find samples/ -iname *.h* -o -iname *.c* | xargs clang-format -i
8
+find unitTests/ -iname *.h* -o -iname *.c* | xargs clang-format -i
9
+find app/ -iname *.h* -o -iname *.c* | xargs clang-format -i
10
+find fuzz/ -iname *.h* -o -iname *.c* | xargs clang-format -i
0 commit comments