fix: 修复代码提交前验证流程

This commit is contained in:
ChenZhaoYu 2023-02-13 20:55:26 +08:00
parent 910c19b02e
commit e35abb1c98
3 changed files with 4 additions and 4 deletions

2
.husky/commit-msg Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh" . "$(dirname -- "$0")/_/husky.sh"
pnpm exec commitlint --config .commitlintrc.json --edit "${1}" npx --no -- commitlint --edit

2
.husky/pre-commit Normal file → Executable file
View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh" . "$(dirname -- "$0")/_/husky.sh"
pnpm exec lint-staged npx lint-staged

View File

@ -48,8 +48,8 @@
}, },
"lint-staged": { "lint-staged": {
"*.{js,ts,jsx,tsx,vue}": [ "*.{js,ts,jsx,tsx,vue}": [
"pnpm run lint:fix", "pnpm lint:fix",
"pnpm run type-check" "pnpm type-check"
] ]
} }
} }