11 lines
184 B
Bash
Executable File
11 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
# If not using pnpm, switch to your package manager
|
|
npx lint-staged
|
|
|
|
cd src-tauri
|
|
cargo clippy --all --tests -- -D warnings
|
|
cargo test --all
|
|
|