mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
15 lines
1.1 KiB
JSON
15 lines
1.1 KiB
JSON
{
|
||
// 参考:https://blog.csdn.net/weixin_46238462/article/details/125867532
|
||
|
||
"editor.defaultFormatter": "esbenp.prettier-vscode", // 定义一个默认格式化程序, 该格式化程序优先于所有其他格式化程序设置。必须是提供格式化程序的扩展的标识符。
|
||
"editor.formatOnSave": true, //在保存时格式化文件。格式化程序必须可用,延迟后文件不能保存,并且编辑器不能关闭。
|
||
"editor.detectIndentation": false, // 控制在基于文件内容打开文件时是否自动检测 #editor.tabSize# 和 #editor.insertSpaces#。
|
||
"editor.tabSize": 4, // 一个制表符等于的空格数。当 #editor.detectIndentation# 打开时,将根据文件内容替代此设置。
|
||
"editor.codeActionsOnSave": {
|
||
"source.fixAll": true, // 控制是否应在文件保存时运行自动修复操作。
|
||
"source.fixAll.eslint": true,
|
||
"source.fixAll.stylelint": true
|
||
}, // 要在保存时运行的代码操作种类。
|
||
"files.eol": "\n" //行尾字符与.prettierrc.cjs配置一致
|
||
}
|