VScode格式化代码插件beautify
1. 安装Beautify插件
在VS Code的插件管理中寻找Beautify,进行安装
在 VS Code 中使用 Ctrl+Shift+P
打开命令面板
自己配置
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
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭