Added a pre-commit hook that should simplify commiting pre-formatted code
This commit is contained in:
parent
bb26c68f2c
commit
a1a6eae43f
2 changed files with 18 additions and 0 deletions
13
hooks/pre-commit
Executable file
13
hooks/pre-commit
Executable file
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/bash
|
||||
for FILE in $(git diff --cached --name-only)
|
||||
do
|
||||
if [[ "$FILE" =~ src/[A-Za-z0-9\ \-]+*\.(c|h|cpp|cc)$ ]]; then
|
||||
echo Autoformatting $FILE with clang-format
|
||||
clang-format-11 -style=file -i -- $FILE
|
||||
git add -- $FILE
|
||||
elif [[ "$FILE" =~ src/(components|displayapp|drivers|heartratetask|logging|systemtask)/.*\.(c|h|cpp|cc)$ ]]; then
|
||||
echo Autoformatting $FILE with clang-format
|
||||
clang-format-11 -style=file -i -- $FILE
|
||||
git add -- $FILE
|
||||
fi
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue