码迷,mamicode.com
首页 > 其他好文 > 详细

Vscode格式化的样式设置

时间:2019-07-30 15:27:55      阅读:531      评论:0      收藏:0      [点我收藏+]

标签:options   vscode   开启   test   rop   single   tabs   rip   pes   

 一、文件

Settings.json

 

二、路径

  设置--->用户(常用设置)【文本编辑器】上面--->在setting.json中编辑
 
三、代码
 1 {
 2   "files.eol": "\n",
 3   "typescript.preferences.quoteStyle": "single",
 4   "javascript.preferences.quoteStyle": "single"
 5   // tab 大小为2个空格
 6   "editor.tabSize": 2,
 7   // 编辑器换行
 8   "editor.wordWrap": "off",
 9   // 保存时格式化
10   "editor.formatOnSave": false,
11   // 开启 vscode 文件路径导航
12   "breadcrumbs.enabled": true,
13   // prettier 设置语句末尾不加分号
14   "prettier.semi": false,
15   // prettier 设置强制单引号
16   "prettier.singleQuote": true,
17   // 选择 vue 文件中 template 的格式化工具
18   "vetur.format.defaultFormatter.html": "js-beautify-html",
19   // vetur 的自定义设置
20   "vetur.format.defaultFormatterOptions": {
21     "js-beautify-html": {
22       "wrap_attributes": "aligned-multiple"
23     },
24     "prettier": {
25       "singleQuote": true,
26       "semi": false,
27       "printWidth": 100,
28       "wrapAttributes": false,
29       "sortAttributes": false
30     }
31   }
32 }

 

Vscode格式化的样式设置

标签:options   vscode   开启   test   rop   single   tabs   rip   pes   

原文地址:https://www.cnblogs.com/wangyuxue/p/11270183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!