8 lines
159 B
Plaintext
8 lines
159 B
Plaintext
|
#!/usr/bin/env sh
|
||
|
. "$(dirname -- "$0")/_/husky.sh"
|
||
|
|
||
|
#推送之前运行eslint检查
|
||
|
npx lint-staged
|
||
|
##推送之前运行单元测试检查
|
||
|
#npm run test:unit
|