惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
月光博客
月光博客
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
量子位
人人都是产品经理
人人都是产品经理
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - Franky
The Cloudflare Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
Last Week in AI
Last Week in AI

博客园 - 小熊吉米

国密 SM2 / SM3 / SM4 静态帮助类 Windows10禁用资源管理器文件夹自动视图转换 Avalonia跨平台智能提问ChatAI C#使用WhisperNet实现语音识别功能 WPF日历控件 百度网盘搜索工具_2022 Vue+ElementUI: 手把手教你做一个audio组件 进程守护工具 【C#】工具类-FTP操作封装类FTPHelper C# 调用APlayer教程 百度网盘搜索工具_2019 网盘搜索网站 在线服务 在线转换服务 Windows下安装NTP服务器 FFmpeg命令详解 C#远程桌面连接工具 Win10远程桌面出现 身份验证错误,要求的函数不受支持,这可能是由于CredSSP加密Oracle修正 解决方法 LINQ的左连接、右连接、内连接 MongoDB的下载、安装与部署方法
VSCode最佳设置
小熊吉米 · 2020-06-11 · via 博客园 - 小熊吉米

最近在学习Vue,用VSCode开发。经过摸索,VSCode最佳设置。

 1 {
 2     "eslint.enable": false,
 3     "workbench.colorTheme": "One Dark Pro",
 4     "vetur.format.options.tabSize": 2,
 5     "vetur.format.options.useTabs": true,
 6     "vetur.format.defaultFormatter.html": "js-beautify-html",
 7     "vetur.format.defaultFormatterOptions": {
 8         "js-beautify-html": {
 9             "wrap_attributes": false
10         },
11         "prettier": {
12             "semi": false, //不加分号false
13             "singleQuote": true //用单引号true
14         }
15     },
16     //推荐配置
17     "html.format.wrapAttributes": "preserve",
18     "window.zoomLevel": 0.6, //窗口缩放
19     "files.autoSave": "off",
20     "workbench.editor.enablePreview": false,
21     "workbench.startupEditor": "newUntitledFile",
22     "workbench.activityBar.visible": true,
23     "editor.tabSize": 2,
24     "editor.wordWrap": "on", //软换行
25     "editor.renderWhitespace": "boundary",
26     "editor.cursorBlinking": "smooth",
27     "editor.minimap.renderCharacters": false,
28     "editor.fontLigatures": true,
29     "editor.largeFileOptimizations": false,
30     "editor.quickSuggestions": {
31         "strings": true
32     },
33     "explorer.confirmDragAndDrop": true,
34     "explorer.confirmDelete": false,
35     "extensions.autoUpdate": false,
36     "breadcrumbs.enabled": true,
37     "window.titleBarStyle": "custom",
38     "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
39     "eslint.validate": [
40         "javascript",
41         "vue"
42     ],
43     "eslint.options": {
44         "plugins": [
45             "html"
46         ]
47     },
48     "git.autorefresh": false,
49     "search.followSymlinks": false,
50     "workbench.sideBar.location": "left",
51 }