You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PPTist/commitlint.config.cjs

16 lines
507 B

4 months ago
/**
* build 编译相关的修改例如发布版本对项目构建或者依赖的改动
* chore 其他修改, 比如改变构建流程或者增加依赖库工具等
* docs 文档修改
* feat 新特性新功能
* fix 修改bug
* perf 优化相关比如提升性能体验
* refactor 代码重构
* revert 回滚到上一个版本
* style 代码格式修改
* test 测试用例修改
*/
/* eslint-env node */
module.exports = {
extends: ['@commitlint/config-conventional'],
}