-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
配置 husky 添加 git hooks
# install
pnpm add -D husky
# enable
npx husky install
npm pkg set scripts.prepare="husky install"
npx husky add .husky/pre-commit "pnpm precommit"
# package.json
"precommit": "lint-staged --allow-empty",
pnpm add -D lint-staged
#package.json
"lint-staged": {
"src/**/*.{jsx,tsx,ts,js,json,css,less,md}": [
"prettier --write",
"git add ."
]
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels