mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
Git hook: Import Dolphin’s clang-format hook.
This commit is contained in:
parent
bfc454e951
commit
491f5bab88
@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/bin/bash
|
||||||
|
|
||||||
# Enforce citra's whitespace policy
|
# Enforce citra's whitespace policy
|
||||||
git config --local core.whitespace tab-in-indent,trailing-space
|
git config --local core.whitespace tab-in-indent,trailing-space
|
||||||
@ -24,3 +24,20 @@ If you know what you are doing, you can try 'git commit --no-verify' to bypass t
|
|||||||
END
|
END
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
for f in $(git diff --name-only --diff-filter=ACMRTUXB --cached); do
|
||||||
|
if ! echo "$f" | egrep -q "[.](cpp|h)$"; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
if ! echo "$f" | egrep -q "^src/"; then
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
d=$(diff -u "$f" <(clang-format "$f"))
|
||||||
|
if ! [ -z "$d" ]; then
|
||||||
|
echo "!!! $f not compliant to coding style, here is the fix:"
|
||||||
|
echo "$d"
|
||||||
|
fail=1
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
exit "$fail"
|
||||||
|
Loading…
Reference in New Issue
Block a user