swc/.husky/pre-push
2022-02-22 08:05:54 +00:00

12 lines
163 B
Bash
Executable File

#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
# yarn run cspell "**/src/**/*.rs"
cargo fmt --all -- --check
if [ -z ${SWC_SKIP_CLIPPY+x} ];
then
cargo clippy
fi