swc/.husky/pre-push

14 lines
246 B
Plaintext
Raw Normal View History

2021-10-19 11:25:57 +03:00
#!/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