1. 安装Beautify插件

在VS Code的插件管理中寻找Beautify,进行安装
2019-06-16_113239.png

在 VS Code 中使用 Ctrl+Shift+P 打开命令面板
2019-06-16_113402.png

自己配置

1. 在工作目录下建立.jsbeautifyrc文件

  {
   "brace_style": "none,preserve-inline",
   "indent_size": 10,
   "indent_char": " ",
   "jslint_happy": true,
   "unformatted": [""],
   "css": {
     "indent_size": 2
   }
}

https://github.com/HookyQR/VSCodeBeautify/blob/master/Settings.md

2019-06-16_113715.png