欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

VSCode插件安装完成后的配置详解

程序员文章站 2022-09-12 13:54:41
vscode插件安装完成后,有些插件如果你想要完整的使用其中的功能得在settings.json中就行配置,接下来是我常用的一些配置{ "workbench.icontheme": "vscode-...

vscode插件安装完成后,有些插件如果你想要完整的使用其中的功能得在settings.json中就行配置,接下来是我常用的一些配置

{
  "workbench.icontheme": "vscode-icons",
  "window.zoomlevel": 0,
  "files.autosave": "off",
  "eslint.runtime": "",
  "editor.codeactionsonsave": {
    "source.fixall.eslint": true
  },
  "eslint.codeaction.disablerulecomment": {},
  "eslint.codeaction.showdocumentation": {},
  "editor.formatonsave": true,
  "vetur.completion.scaffoldsnippetsources": {},
  "vetur.format.defaultformatter.html": "prettier",
  // 是否允许自定义的snippet片段提示
  "editor.snippetsuggestions": "top",
  "editor.fontsize": 14,
  "editor.fontweight": "400",
  "editor.formatontype": true,
  "guides.enabled": false,
  "editor.tabsize": 2,
  "git.confirmsync": false,
  "editor.renderwhitespace": "boundary",
  "editor.cursorblinking": "smooth",
  "editor.minimap.enabled": true,
  "editor.minimap.rendercharacters": false,
  "window.title": "${dirty}${activeeditormedium}${separator}${rootname}",
  "editor.codelens": true,
  // 配置文件关联,以便启用对应的提示
  "files.associations": {
    "*.vue": "vue",
    "*.wxss": "css",
    "*.cjson": "jsonc",
    "*.wxs": "javascript"
  },
  // 配置emmet是否启用tab展开缩写
  "emmet.triggerexpansionontab": true,
  // 配置emmet对文件类型的支持
  "emmet.syntaxprofiles": {
    "javascript": "jsx",
    "vue": "html",
    "vue-html": "html"
  },
  // 是否开启eslint检测
  "eslint.enable": true,
  // eslint配置文件
  "eslint.options": {
    "extensions": [
      ".js",
      ".vue"
    ]
  },
  "git.autofetch": true,
  "workbench.colortheme": "one dark pro",
  "emmet.includelanguages": {
    "wxml": "html"
  },
  "minapp-vscode.disableautoconfig": true,
}

这个配置能够直接让你ctrl+/注释代码,不管是vue的还是html的;也能ctrl+s时使用eslint格式化代码;输入for,foreach,map等的自动完成代码等一系列的快捷操作

到此这篇关于vscode插件安装完成后的配置详解的文章就介绍到这了,更多相关vscode插件安装后配置内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: VSCode 配置