Files
chat/commitlint.config.js
2026-04-25 16:36:34 +08:00

21 lines
820 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.
/**
* document: https://commitlint.js.org/#/reference-configuration
*
* https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type
* featnew feature 新功能feature
* fixbug fix 修补bug
* docsdocument 文档documentation
* stylestyle(Changes that do not affect code execution) 格式(不影响代码运行的变动)
* refactorRefactoring (i.e., code changes that are not new features or bug fixes) 重构即不是新增功能也不是修改bug的代码变动
* perfperformance optimization 性能优化
* testadd test case 增加测试
* choreChanges to the build process or accessibility tools 构建过程或辅助工具的变动
*/
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [0],
},
};