summaryrefslogtreecommitdiffhomepage
path: root/format.sh
blob: 9cb5080455c0658484740870900a436d2361bb3b (plain)
1
2
3
4
5
6
7
#!/bin/sh

THIS_PATH="$(realpath "$0")"
THIS_DIR="$(dirname "$THIS_PATH")"
FILE_LIST="$(find "$THIS_DIR" | grep -E ".*(\.cpp|\.cc|\.c|\.h|\.inl)$")"

clang-format --verbose -i --style=file $FILE_LIST