Release v4.8.23
[V4.8.23]
- feat:
functionParamAddStr在type param后面增加字符串, 在 type param 后面增加字符串 可能是冒号,方便输入参数描述。 #443
"fileheader.configObj": {
"functionParamAddStr": "" // 默认不增加字符串
}示例:
// "functionParamAddStr": ":"
/**
* @description: 增加冒号 方便输入参数描述
* @param {type} a:
* @param {type} b:
* @param {array} c:
* @return {type}
*/
function test2(a, b, ...c) {}