summaryrefslogtreecommitdiffstats
path: root/util/gitconfig
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@alterapraxis.com>2015-01-03 02:08:33 +1100
committerPatrick Georgi <pgeorgi@google.com>2019-01-04 10:37:10 +0000
commit4139c15276a62c32c8d976c41782073379d64585 (patch)
tree1b4b2f0cf9629d72fc5ef62ee1f4f755cba8aaea /util/gitconfig
parentd1584fb2502a5d4741cf3f97d6f572dffd1aea04 (diff)
downloadcoreboot-4139c15276a62c32c8d976c41782073379d64585.tar.gz
coreboot-4139c15276a62c32c8d976c41782073379d64585.tar.bz2
coreboot-4139c15276a62c32c8d976c41782073379d64585.zip
util/gitconfig/pre-commit: Use clang-format to sanitise commits
Use the `git-format' tool to sanitise coreboot commits such that they conform to coreboot's coding style. This fancy piece of machinary allows one to have LibFormat from Clang to automatically check your commit conforms to coreboot's coding style, fix any issues automatically and provides you a diff you may review and apply at your convenience. N.B. When the `clang-format' binary is not found we issue a warning that the test was skipped and carry on as usual. Hence, this is strictly non-enforcing at this current time. You may use it at your leisure. Change-Id: If49017ea82f0707efd47cae5978a286a9af8f3b7 Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: https://review.coreboot.org/c/8037 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/gitconfig')
-rwxr-xr-xutil/gitconfig/pre-commit2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/gitconfig/pre-commit b/util/gitconfig/pre-commit
index 0644b7ff865d..78b2509eba42 100755
--- a/util/gitconfig/pre-commit
+++ b/util/gitconfig/pre-commit
@@ -18,7 +18,7 @@
set -e # -o errexit
set -u # -o nounset
-%MAKE% lint-stable
+%MAKE% check-style lint-stable
PATCHDIFF=$(git diff --cached --src-prefix=a/ --dst-prefix=b/)
if printf "%s\n" "$PATCHDIFF" | grep -q "@@"; then