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

21 lines
580 B
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* document: https://commitlint.js.org/#/reference-configuration
*
* https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type
* feat新功能feature
* fix修补bug
* docs文档documentation
* style 格式(不影响代码运行的变动)
* refactor重构即不是新增功能也不是修改bug的代码变动
* perf性能优化
* test增加测试
* chore构建过程或辅助工具的变动
*/
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [0],
},
};