diff --git a/commitlint.config.cjs b/commitlint.config.cjs new file mode 100644 index 00000000..552880ad --- /dev/null +++ b/commitlint.config.cjs @@ -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', + ], + ], + }, +} diff --git a/package.json b/package.json index 1327e381..96ac2fd7 100644 --- a/package.json +++ b/package.json @@ -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",