aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-11-25 13:01:17 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-11-25 15:05:18 +0100
commit09c4508aee96ca20d084b8a60b4c6603de8bff8b (patch)
treefa17b39bb6018b96b8045b3af6bdfbd8e1ca5af5 /tools
parentAdd QT_NO_DEBUG to non-debug builds (diff)
downloadsmolbote-09c4508aee96ca20d084b8a60b4c6603de8bff8b.tar.xz
Add Session Dialog
Diffstat (limited to 'tools')
-rwxr-xr-xtools/format-code.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/format-code.sh b/tools/format-code.sh
new file mode 100755
index 0000000..68be1d8
--- /dev/null
+++ b/tools/format-code.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+
+# get names of staged files | filter out the header and cpp files | clang-format them
+git diff --staged --name-only | grep --regex="\.h\|\.cpp" | xargs clang-format -i