mirror of
https://github.com/142vip/408CSFamily.git
synced 2026-02-03 02:23:38 +08:00
8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
/**
|
||
* 校验Git Commit信息格式
|
||
* 参考:https://commitlint.js.org
|
||
*/
|
||
module.exports = {
|
||
extends: ['@commitlint/config-conventional']
|
||
}
|