VScode个人基本配置
程序员文章站
2022-06-22 18:10:49
...
本文备份了使用VScode的基本配置
{
"files.autoSave": "onFocusChange",
"fileheader.customMade": { // 此为文件头部注释
"Author": "**",
"Date": "Do not edit",
"lastEditors": "**",
"LastEditTime": "Do not edit",
"desc": "desc"
},
// 函数头部注释
"fileheader.cursorMode": {
"description": "",
"param": "",
"return": "",
"author": ""
},
// 取消头部注释自动添加 ctrl+alt+i (windows下)
"fileheader.configObj": {
"autoAdd": false,
},
"editor.tabSize": 2, // 制表符符号eslint
"editor.detectIndentation": false,
"emmet.triggerExpansionOnTab": true,
"editor.formatOnSave": true, // eslint保存自动格式化
"eslint.autoFixOnSave": true, // 每次保存的时候将代码按eslint格式进行修复
"javascript.format.enable": false, // 不启动JavaScript格式化
"workbench.colorTheme": "Atom One Dark",
"workbench.startupEditor": "newUntitledFile",
"explorer.confirmDelete": false,
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "auto"
},
"prettyhtml": {
"printWidth": 120,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
},
"prettier": {
// 格式化不加分号
"semi": false,
// 格式化为单引号
"singleQuote": true
}
},
// 在方法括号之间插入空格
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
"vetur.format.defaultFormatter.js": "prettier-eslint",
// "vetur.format.defaultFormatter.js": "vscode-typescript",
// 用来配置作用的文件类型
"eslint.validate": [ //开启文件中错误的检查
"javascript",
"javascriptreact",
{
"language": "html",
"autoFix": true
},
{
"language": "vue",
"autoFix": true
},
{
"language": "javascriptreact",
"autoFix": true
}
],
"eslint.alwaysShowStatus": true,
"eslint.options": {
"extensions": [
".js",
".vue"
]
},
"workbench.iconTheme": "vscode-icons",
"editor.fontSize": 16,
"beautify.config": {
"brace_style": "collapse,preserve-inline" // 修改大括号换行问题
},
"prettier.semi": false,
"vsicons.dontShowNewVersionMessage": true
}
上一篇: 点云PCL中小细节