ESLint 与 Prettier 配合解决代码格式问题
- 创建
.eslintrc.js
文件
module.exports = {
root: true,
env: {
node: true
},
extends: [
"plugin:vue/vue3-essential",
"@vue/standard",
"@vue/typescript/recommended"
],
parserOptions: {
ecmaVersion: 2020
},
rules: {
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"space-before-function-paren": "off",
semi: "off",
quotes: ["error", "double"]
}
}
- ESLint 与 Prettier 配合解决代码格式问题
21. 在 VSCode
中安装 prettier
插件
22. 创建.prettierrc
文件
{
"semi": true,
"singleQuote": false,
"trailingComma": "none"
}
Commitizen规范化提交代码
- 全局安装
Commitizen
npm install -g commitizen
- 安装并配置
cz-customizable
插件
npm i cz-customizable --save-dev
- 添加以下配置到
package.json
中
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
}
- 项目根目录下创建
.cz-config.js
自定义提示文件
module.exports = {
types: [
{ value: 'feat', name: 'feat: 新功能' },
{ value: 'fix', name: 'fix: 修复' },
{ value: 'docs', name: 'docs: 文档变更' },
{ value: 'style', name: 'style: 代码格式(不影响代码运行的变动)' },
{
value: 'refactor',
name: 'refactor: 重构(既不是增加feature,也不是修复bug)'
},
{ value: 'perf', name: 'perf: 性能优化' },
{ value: 'test', name: 'test: 增加测试' },
{ value: 'chore', name: 'chore: 构建过程或辅助工具的变动' },
{ value: 'revert', name: 'revert: 回退' },
{ value: 'build', name: 'build: 打包' }
],
messages: {
type: '请选择提交类型:',
customScope: '请输入修改范围(可选):',
subject: '请简要描述提交(必填):',
body: '请输入详细描述(可选):',
footer: '请输入要关闭的issue(可选):',
confirmCommit: '确认使用以上信息提交?(y/n/e/h)'
},
skipQuestions: ['body', 'footer'],
subjectLimit: 72
}
- 使用
git cz
代替 git commit
,即可看到提示内容
husky + commitlint 检查提交描述是否符合规范要求
- 安装依赖
npm install --save-dev @commitlint/config-conventional @commitlint/cli
- 创建
commitlint.config.js
文件
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [
2,
"always",
[
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"build"
]
],
"subject-case": [0]
}
};
- 安装
husky
npm install husky --save-dev
- 在
package.json
中生成 prepare
指令
npm set-script prepare "husky install"
- 执行
prepare
指令
npm run prepare
- 添加
commitlint
的 hook
到 husky
中,并指令在 commit-msg
的 hooks
下执行 npx --no-install commitlint --edit "$1"
指令
npx husky add .husky/commit-msg 'npx --no-install commitlint --edit "$1"'
package.json
文件中,配置lint-staged
进行自动修复格式错误,
"lint-staged": {
"src/**/*.{js,jsx,vue,ts,tsx}": [
"eslint --fix",
"git add"
]
}
- 通过
pre-commit
检测提交时代码规范
npx husky add .husky/pre-commit "npx lint-staged"