diff --git a/.husky/pre-commit b/.husky/pre-commit index 18193ff..0312b76 100644 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,4 +1,4 @@ #!/usr/bin/env sh . "$(dirname -- "$0")/_/husky.sh" -npm run lint && npm run prettier +npx lint-staged \ No newline at end of file diff --git a/README.md b/README.md index 0e4d5d2..7369b73 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,12 @@ pnpm dev pnpm build ``` +- cz规范提交git + +```bash +npx cz +``` + ## 素材来源 [iconfont-阿里巴巴矢量图标库](https://www.iconfont.cn/collections/detail?spm=a313x.7781069.1998910419.d9df05512&cid=39973) diff --git a/package.json b/package.json index 0605d0c..a60e57d 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,10 @@ "path": "./node_modules/cz-customizable" } }, + "lint-staged": { + "./src/**/*.{ts,tsx}": "lint", + "./src/**/*.{js,jsx,ts,tsx,less,json}": "prettier --loglevel warn --write" + }, "dependencies": { "vue": "^3.2.37" }, @@ -35,6 +39,7 @@ "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-vue": "^9.3.0", "husky": "^8.0.0", + "lint-staged": "^13.0.3", "prettier": "^2.7.1", "typescript": "^4.6.4", "vite": "^3.0.0", diff --git a/src/App.vue b/src/App.vue index 6bd8c4f..9cc1c3a 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,7 +7,7 @@ import HelloWorld from './components/HelloWorld.vue';