1、注释插件
// 目前默认配置setting.json中添加
"fileheader.customMade": { //此为头部注释
"Author": "bill",
"Date": "Do not edit",
"LastEditors": "bill",
"LastEditTime": "Do not edit",
"Description": ""
},
"fileheader.cursorMode": { //此为函数注释
"author": "bill",
"description": "",
"param": "",
"return": ""
},
"fileheader.configObj": {
"autoAdd": true, // 默认开启自动添加头部注释,当文件没有设置头部注释时保存会自动添加
"autoAlready": true, // 默认开启
"prohibitAutoAdd": [
"json",
"md"
], // 禁止.json .md文件,自动添加头部注释
"wideSame": false, // 设置为true开启
"wideNum": 13 // 字段长度 默认为13
}