only run gofumpt on .go files in pre-commit hook

This commit is contained in:
Marten Seemann 2021-01-04 16:01:48 +08:00
parent 4c079b9ede
commit a6c767183c

View file

@ -13,8 +13,8 @@ for f in $(git diff --cached --name-only); do
fi
done
# Check that all files are properly gofumpt-ed.
output=$(gofumpt -d $(git diff --cached --name-only))
# Check that all Go files are properly gofumpt-ed.
output=$(gofumpt -d $(git diff --cached --name-only -- '*.go'))
if [ -n "$output" ]; then
echo "Found files that are not properly gofumpt-ed."
echo "$output"