From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- third_party/rust/jsparagus/.githooks/pre-commit | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 third_party/rust/jsparagus/.githooks/pre-commit (limited to 'third_party/rust/jsparagus/.githooks/pre-commit') diff --git a/third_party/rust/jsparagus/.githooks/pre-commit b/third_party/rust/jsparagus/.githooks/pre-commit new file mode 100755 index 0000000000..5ca77432b2 --- /dev/null +++ b/third_party/rust/jsparagus/.githooks/pre-commit @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +# +# Simplified commit hook to format the files which were changed in the current commit +# + +printf "[pre-commit] rustfmt" + +for file in $(git diff --name-only --cached); do + if [ ${file: -3} == ".rs" ]; then + rustfmt $file + fi +done + +exit 0 -- cgit v1.2.3