9 lines
338 B
JavaScript
9 lines
338 B
JavaScript
|
// 配置commitizen自定义格式样板
|
|||
|
/**
|
|||
|
* 配置commitizen自定义格式样板
|
|||
|
* 社区标准提交中需要回答:type,scope,suject,body,breaking等问题,
|
|||
|
* 目前考虑现实情况,我们只需要开放type,scope,suject问题
|
|||
|
*/
|
|||
|
const CZConfig = require('../../config/CZConfig');
|
|||
|
module.exports = CZConfig;
|