add husky

This commit is contained in:
ray_wuhao 2023-01-27 18:14:42 +08:00
parent b132da6c5d
commit 94dfc524c7
2 changed files with 34 additions and 1 deletions

21
commitlint.config.cjs Normal file
View File

@ -0,0 +1,21 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
2,
'always',
[
'bug',
'feat',
'fix',
'docs',
'style',
'refactor',
'test',
'chore',
'revert',
'merge',
],
],
},
}

View File

@ -9,7 +9,15 @@
"preview": "vite preview",
"test": "vue-tsc --noEmit && vite build --mode test",
"dev-build": "vue-tsc --noEmit && vite build --mode development",
"report": "vue-tsc --noEmit && vite build --mode report"
"report": "vue-tsc --noEmit && vite build --mode report",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.{vue,jsx,ts,tsx,json}": [
"prettier --write",
"eslint",
"git add"
]
},
"dependencies": {
"@vueuse/core": "^9.1.0",
@ -34,6 +42,8 @@
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@intlify/unplugin-vue-i18n": "^0.5.0",
"@types/crypto-js": "^4.1.1",
"@types/scrollreveal": "^0.0.8",
@ -52,6 +62,8 @@
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-vue": "^9.7.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.1.0",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.7.1",