swc/.husky/pre-push
2022-04-26 14:16:38 +00:00

14 lines
246 B
Bash
Executable File

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
# yarn run cspell "**/src/**/*.rs"
cargo fmt --all -- --check
# Remove empty directories
if command -v fd &> /dev/null
then
fd -H '^\.DS_Store$' -tf -X rm || true
fd -te -td -X rmdir || true
fi