Vscode格式化的样式设置

Posted wangyuxue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vscode格式化的样式设置相关的知识,希望对你有一定的参考价值。

 一、文件

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格式化的样式设置的主要内容,如果未能解决你的问题,请参考以下文章

vscode格式化最后面个逗号

vscode代码自动代码格式化(添加分号)

VScode格式化HTML代码保持标签属性不换行

vscode 配置eslint,保存格式化样式

如何在 vscode 上为 css 模块设置更漂亮

Vscode eclipse格式化程序设置对齐方法参数