From 4139c15276a62c32c8d976c41782073379d64585 Mon Sep 17 00:00:00 2001 From: Edward O'Callaghan Date: Sat, 3 Jan 2015 02:08:33 +1100 Subject: 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 Reviewed-on: https://review.coreboot.org/c/8037 Reviewed-by: Patrick Georgi Reviewed-by: HAOUAS Elyes Tested-by: build bot (Jenkins) --- util/gitconfig/pre-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/gitconfig') 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 -- cgit v1.2.3