mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
12 lines
163 B
Bash
Executable File
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
|