mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
ci: 一些配置和注释
This commit is contained in:
parent
9f7b6ef6db
commit
4f1b0df492
10
.vscode/extensions.json
vendored
Normal file
10
.vscode/extensions.json
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"CodeInChinese.EnglishChineseDictionary", // 翻译(英汉词典)
|
||||
"kisstkondoros.vscode-gutter-preview", // Image 预览
|
||||
"ritwickdey.LiveServer", // 为静态和动态页面启动具有实时重载功能的本地开发服务器
|
||||
"antfu.unocss", // UnoCSS 原子化css
|
||||
"esbenp.prettier-vscode", // 格式化
|
||||
]
|
||||
}
|
||||
|
14
.vscode/settings.json
vendored
14
.vscode/settings.json
vendored
@ -1,5 +1,13 @@
|
||||
{
|
||||
"editor.formatOnSave": true, //保存时格式化
|
||||
"editor.detectIndentation": false,
|
||||
"editor.tabSize": 4
|
||||
// 参考: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.codeActionsOnSave": {
|
||||
"source.fixAll": true, // 控制是否应在文件保存时运行自动修复操作。
|
||||
"source.fixAll.eslint": true,
|
||||
"source.fixAll.stylelint": true
|
||||
}, // 要在保存时运行的代码操作种类。
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user