首页 前端知识 如何打开并且配置vscode的setting.json文件

如何打开并且配置vscode的setting.json文件

2024-06-20 09:06:08 前端知识 前端哥 551 574 我要收藏

文章目录

  • 前言
  • 一、如何在vscode里面打开setting.json文件?
    • 方法一:
  • 二、常用的文件配置


前言

setting.json文件的作用就是当你把这个文件放到安装目录下之后,vscode就会自动识别这个文件。这个就可以让你快速把一个全新的vscode设置成自己之前已经设置过的样子


提示:以下是本篇文章正文内容,下面案例可供参考

一、如何在vscode里面打开setting.json文件?

方法一:

在这里插入图片描述
在这里插入图片描述

二、常用的文件配置

{
"tslint.autoFixOnSave": true,
"workbench.iconTheme": "vscode-icons",
"window.zoomLevel": 1,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"liveServer.settings.donotShowInfoMsg": true,
"team.showWelcomeMessage": false,
"git.enableSmartCommit": true,
"guides.enabled": false,
"vsicons.dontShowNewVersionMessage": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-expand-multiline",
"end_with_newline": true
}
},
"vetur.format.options.tabSize": 2,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[less]": {
"editor.defaultFormatter": "michelemelluso.code-beautifier"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"[jsonc]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"editor.tabSize": 2,
"diffEditor.ignoreTrimWhitespace": false,
"files.associations": {},
"http.proxyAuthorization": null,
"editor.rulers": [],
"scf.python3.path": "",
"scf.python2.path": "",
"interview.workspaceFolder": "",
"interview.updateNotification": 1626679595429,
"search.exclude": {
"**/node_modules": false
},
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"gitlens.codeLens.scopes": [
"document"
]
},
"security.workspace.trust.untrustedFiles": "open",
}
复制
转载请注明出处或者链接地址:https://www.qianduange.cn//article/13018.html
标签
ide
评论
还可以输入200
共0条数据,当前/页
发布的文章

JQuery中的load()、$

2024-05-10 08:05:15

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!