xuexiaole-mobile/commitlint.config.js
2025-07-11 17:43:34 +08:00

25 lines
717 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// build主要目的是修改项目构建系统(例如 glupwebpackrollup 的配置等)的提交
// ci主要目的是修改项目继续集成流程(例如 TravisJenkinsGitLab CICircle 等)的提交
// docs文档更新
// feat新增功能
// fixbug 修复
// perf性能优化
// refactor重构代码(既没有新增功能,也没有修复 bug)
// style不影响程序逻辑的代码修改(修改空白字符,补全缺失的分号等)
// test新增测试用例或是更新现有测试
// revert回滚某个更早之前的提交
// chore不属于以上类型的其他类型(日常事务)
module.exports = {
extends: ['@commitlint/config-conventional'],
};