homesync/.githooks/pre-commit

14 lines
229 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
filesToFormat=$(
git --no-pager diff --name-status --no-color --cached | \
awk '$1 != "D" && $2 ~ /\.rs/ {print $2}'
)
for path in $filesToFormat
do
rustfmt --edition 2021 $path
git add $path
done;