vsCode_1.27.2
User Settings:
一,当前行高亮显示:
"editor.renderLineHighlight": "line",
二,如何呈现空白字符(一般选none,这样会比较清爽)
"editor.renderWhitespace": "none"
"editor.renderWhitespace": "all"
三,窗口失去焦点自动保存
"files.autoSave": "onFocusChange",
四,通过使用鼠标滚轮同时按住 Ctrl 可缩放编辑器的字体
"editor.mouseWheelZoom": true,
五,图标的显示
"workbench.iconTheme": "vscode-great-icons",
六,主题色(这里选择了"Solarized Dark")
"workbench.colorTheme": "Default Dark+"
七,打开新窗口的页面(建议用“newUntitledFile”)
"workbench.startupEditor": "newUntitledFile",

"workbench.startupEditor": "welcomePage",
{
"workbench.colorTheme": "Solarized Dark",
"editor.quickSuggestions": {
"strings": true
},
"workbench.settings.editor": "json",
//文件搜索区域配置
"search.exclude": {
"**/node_modules": false,
"**/bower_components": true,
"**/dist":true,
"**/build":true,
"**/elehukouben":true,
"**/.git":true,
"**/.gitignore":true,
"**/.svn":true,
"**/.DS_Store":true,
"**/.idea":true,
"**/.vscode":false,
"**/yarn.lock":true,
"**/tmp":true
},
//配置emmet是否启用tab展开缩写
"emmet.triggerExpansionOnTab": true,
//配置emmet对文件类型的支持,比如vue后缀文件按照html文件来进行emmet扩写
"emmet.syntaxProfiles": {
"vue-html":"html",
"vue":"html",
"javascript":"javascriptreact",
// xml类型文件默认都是单引号,开启对非单引号的emmet识别
"xml":{
"attr_quotes":"single"
}
},
"editor.tabSize": 2,
"extensions.autoUpdate": false,
// 行太长自动换行
"editor.wordWrap": "on",
"editor.lineHeight": 24,
"editor.cursorBlinking": "smooth",
//Ctrl+Shift+V:粘贴并格式化
"editor.formatOnPaste": true,
// 窗口失去焦点自动保存
"files.autoSave": "onFocusChange",
//通过使用鼠标滚轮同时按住 Ctrl 可缩放编辑器的字体
"editor.mouseWheelZoom": true,
"editor.snippetSuggestions": "inline",
"workbench.iconTheme": "vscode-great-icons",
//New Window,打开untitled-1
"workbench.startupEditor": "newUntitledFile",
//将在保存文件时修剪尾随空白
"files.trimTrailingWhitespace": true,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"files.associations": {
"*.vue":"vue",
"*.wxss":"css"
},
//在react的jsx中添加对emmet的支持
"emmet.includeLanguages": {
"jsx-sublime-babel-tags":"javascriptreact"
},
//是否开启eslint检测
"eslint.enable": true,
//文件保存时,是否自动根据eslint进行格式化
"eslint.autoFixOnSave": true,
//eslint配置文件
"eslint.options": {
"plugins":[
"html",
"javascript",
{
"language":"vue",
"autoFix":true
},
"vue"
]
},
//eslint能够识别的文件后缀类型
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
"vue",
"typescript",
"typescriptreact"
],
}
vsCode_1.27.2的更多相关文章
- CSharpGL(27)讲讲清楚OpenGL坐标变换
CSharpGL(27)讲讲清楚OpenGL坐标变换 在理解OpenGL的坐标变换问题的路上,有好几个难点和易错点.且OpenGL秉持着程序难以调试.难点互相纠缠的特色,更让人迷惑.本文依序整理出关于 ...
- Amazon Interview | Set 27
Amazon Interview | Set 27 Hi, I was recently interviewed for SDE1 position for Amazon and got select ...
- CentOS7 编译安装LVS 互为主备 (实测 笔记 Centos 7.0 + ipvsadm 1.27 + keepalived 1.2.15 )
环境: 系统硬件:vmware vsphere (CPU:2*4核,内存2G,双网卡) LVS服务器(两台): 系统:Centos7.0 64位(LVS+keepalived) LvsMaster:1 ...
- ORA-12899: value too large for column (actual: 27, maximum: 20)
导入数据时报错以下错误,这是因为原来的数据库是GBK的,每个汉字两个字节,但新数据库是UTF-8的,每个汉字是三个字节,导致超过长度了. ORA-12899: value too large for ...
- 背水一战 Windows 10 (27) - 控件(文本类): TextBlock
[源码下载] 背水一战 Windows 10 (27) - 控件(文本类): TextBlock 作者:webabcd 介绍背水一战 Windows 10 之 控件(文本类) TextBlock 示例 ...
- Internet Download Manager 6.27.1 中文特别版(IDM)
软件介绍: 软件名称:Internet Download Manager(IDM) 软件大小:5.09M软件语言:简体中文 软件官网:http://www.internetdownloadmanage ...
- CentOS6.3 编译安装LAMP(4):编译安装 PHP5.3.27
所需源码包: /usr/local/src/PHP-5.3.27/libmcrypt-2.5.8.tar.gz /usr/local/src/PHP-5.3.27/mhash-0.9.9.9.tar. ...
- NYOJ题目27水池数目
--------------------------------------------- 这道题有点坑,也怪我总是有点马虎,按照正常人的思维0是表示有水池啊竟然是1表示有水池,最坑的是写反了竟然还能 ...
- 腾讯QQ认证空间4月27日已全面开放申请,欲进军自媒体
今天看到卢松松的博客上爆出,腾讯QQ认证空间4月27日已全面开放申请的消息,这一消息出来, 马浩周根据提示方法进行申请,下面先说说腾讯QQ认证空间的申请方法: QQ认证空间开放申请公告地址:http: ...
随机推荐
- .net framework 4.0上跑webapi 1.0
public static class WebApiConfig { public static void Register(HttpConfiguration config) { // Web AP ...
- workerman定时器使用
From: http://doc3.workerman.net/worker-development/add.html add int \Workerman\Lib\Timer::add(float ...
- 精美的HTML5/CSS3表单 带小图标
今天我们要来分享一款非常精美的HTML5/CSS3表单,准备地说,这是一款经过美化的input输入表单,每一个输入表单都可以定义其两侧的小图标,非常华丽.另外,这款表单应用还采用了3种不同的风格主题, ...
- 关于python单方法的类
1.大部分情况下,你拥有一个单方法类的原因是需要存储某些额外的状态来给方法使用. 此种情况下可以使用闭包代替,参考 javascript的闭包计数器实现,python实现各种方法来实现计数器 关于这个 ...
- 为什么React事件处理函数必须使用Function.bind()绑定this?
最近在React官网学习Handling Events这一章时,有一处不是很明白.代码如下: class Toggle extends React.Component { constructor(pr ...
- 在Ubuntu中开启Soft AP功能
在Ubuntu中开启Soft AP功能 1.查看采用的无线网卡是否支持Soft AP: 注意,可以看到有AP字样,表明支持.楼主比较背,在易迅上挑了个销量最高的netcore nw360,结果无法搭建 ...
- [Unity官方文档翻译]Primitive and Placeholder Objects Unity原生3D物体教程
Primitive and Placeholder Objects 原始的基础物体 Unity can work with 3D models of any shape that can be cre ...
- weblogic创建域生产模式,输入用户名闪退
weblogic创建域,生产模式,报错 <2017-12-29 下午04时53分59秒 CST> <Info> <Security> <BEA-090065& ...
- 【权限维持】window几种隐藏技术
“真正”隐藏文件 使用Attrib +s +a +h +r命令就是把原本的文件夹增加了系统文件属性.存档文件属性.只读文件属性和隐藏文件属性. attrib +s +a +h +r c:\test 这 ...
- Django 创建第一个项目
创建项目: [root@localhost ~]$ django-admin.py startproject web # web是项目名 [root@localhost ~]$ tree web/ w ...