热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

vs设置配置文件

{px2rem.isNeedNotes:false,px2rem.rootFontSize:153.6,workbench.editorAssociations:{.gif:cwe

{

"px2rem.isNeedNotes": false,

"px2rem.rootFontSize": 153.6,

"workbench.editorAssociations": {

".gif": "cweijan.officeViewer",

"
.ico": "cweijan.officeViewer",

".png": "cweijan.officeViewer",

"
.jpg": "cweijan.officeViewer"

},

"editor.mouseWheelZoom": true,

"liveServer.settings.donotShowInfoMsg": true,

"diffEditor.ignoreTrimWhitespace": false,

"explorer.confirmDelete": false,

"explorer.confirmDragAndDrop": false,

"files.autoSave": "afterDelay",

"workbench.iconTheme": "vscode-great-icons",

// ................................................各种校验配置区...........................................................

// 保存时自动格式化代码

"editor.formatOnSave": true,

// eslint配置项,保存时自动修复错误

"editor.codeActionsOnSave": {

"source.fixAll": true

},

// 将vetur的js格式化工具指定为vscode自带的

"vetur.format.defaultFormatter.js": "vscode-typescript",

// 移除js语句的分号

"Javascript.format.semicolons": "remove",

// 在函数名后面加上括号,类似这种形式 foo () {}

"Javascript.format.insertSpaceBeforeFunctionParenthesis": true,

// 指定 *.vue 文件的格式化工具为vetur,防止和prettier冲突

"[vue]": {

"editor.defaultFormatter": "octref.vetur"

},

// 指定 *.js 文件的格式化工具为vscode自带,以符合ESLint规范

"[Javascript]": {

"editor.defaultFormatter": "vscode.typescript-language-features"

},

"editor.tabSize": 2,

}



推荐阅读
author-avatar
手机用户2502886741
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有