chore: git hooks for linter and formatter
This commit is contained in:
@@ -1 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
pnpm pretty-quick --staged
|
||||
|
||||
# 运行 clippy fmt
|
||||
cargo fmt --manifest-path ./src-tauri/Cargo.toml
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "rustfmt failed to format the code. Please fix the issues and try again."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
git add .
|
||||
|
||||
# 允许提交
|
||||
exit 0
|
||||
|
||||
13
.husky/pre-push
Normal file
13
.husky/pre-push
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
# 运行 clippy
|
||||
cargo clippy --manifest-path ./src-tauri/Cargo.toml --fix
|
||||
|
||||
# 如果 clippy 失败,阻止 push
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Clippy found issues in sub_crate. Please fix them before pushing."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# 允许 push
|
||||
exit 0
|
||||
Reference in New Issue
Block a user