美文网首页
vscode 自用插件自动保存

vscode 自用插件自动保存

作者: 种阳光的舒克 | 来源:发表于2019-07-31 10:02 被阅读0次

所需插件

vscode-icons
Open in Browser  // 在浏览器打开
jQuery Code Snippets // 代码片段
HTML CSS Support
auto close tag // 括号自动闭合
auto import
Prettier - Code formatter // 代码美化
npm Intellisense
Bracket Pair Colorizer //js括号颜色区分
vetur // vue代码
GitLens — Git supercharged // git显示代码谁写的
eslint   //格式化
One Monokai Theme  //主题
Auto Reveal       //打开文件是否显示列表
Auto Rename Tag     //尾部闭合标签同步修改
Highlight Matching Tag    //高亮显示匹配标签
Vscode-element-helper    //自动提示element标签名称
Version Lens //工具包版本信息
indenticator("editor.renderWhitespace": "all",)  //空白处显示白点
search.followSymlinks":true  设置false      //内存占用过高
"editor.wordWrap": "off",  //折行方式在右侧把off换成on

vacode设置内容

可以在使用vscode时,保存文件时文件内容可以进行自动格式化

{
  "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
  "git.autofetch": true,
  "[html]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "editor.wordWrap": "on", // 文字满屏,自动换行
  "search.followSymlinks": false,
  "window.zoomLevel": 0,
  "editor.fontSize": 13, // 字体大小
  "editor.lineNumbers": "on", //开启行数提示
  "editor.quickSuggestions": {
    //开启自动显示建议
    "other": true,
    "comments": true,
    "strings": true
  },
  "editor.renderWhitespace": "all",
  "editor.tabSize": 2, // tab空格数
  "files.associations": {
    "*.wpy": "vue"
  },
  "eslint.validate": [
    //开启对.vue文件中错误的检查
    "javascript",
    "javascriptreact",
    {
      "language": "html",
      "autoFix": true
    },
    {
      "language": "vue",
      "autoFix": true
    }
  ],
  // Set the default
  "editor.formatOnSave": true, //每次保存自动格式化
  "vetur.format.defaultFormatter.html": "js-beautify-html",
  "eslint.autoFixOnSave": true, // 每次保存的时候将代码按eslint格式进行修复
  "prettier.eslintIntegration": false, //让prettier使用eslint的代码格式进行校验
  "javascript.format.insertSpaceBeforeFunctionParenthesis": false, //让函数(名)和后面的括号之间加个空格
  "vetur.format.defaultFormatter.js": "vscode-typescript", //让vue中的js按编辑器自带的ts格式进行格式化
  // "vetur.format.defaultFormatter.js": "none",
  "vetur.format.defaultFormatterOptions": {
    "js-beautify-html": {
      // "wrap_attributes": "force-aligned" //属性强制折行对齐
      "wrap_attributes": "force-expand-multiline" //属性强制折行对齐
    }
  },
  "vetur.format.defaultFormatter.ts": "vscode-typescript",
  "prettier.jsxBracketSameLine": true,
  "prettier.semi": false,
  "terminal.integrated.rendererType": "dom",
  "[javascript]": {
    "editor.defaultFormatter": "vscode.typescript-language-features"
  },
  "workbench.colorTheme": "One Monokai",
  "git.showPushSuccessNotification": true,
  "git.confirmSync": false,
  "git.enableSmartCommit": true,
  "[javascriptreact]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "workbench.iconTheme": "vscode-icons",
  "vsicons.dontShowNewVersionMessage": true,
  "explorer.autoReveal": false,
  "workbench.sideBar.location": "left"
}

相关文章

  • vscode 自用插件自动保存

    所需插件 vacode设置内容 可以在使用vscode时,保存文件时文件内容可以进行自动格式化

  • VSCode 设置vue 保存自动格式化代码

    设置保存自动格式化代码,开发效率大大提升! 操作如下: 安装VSCode eslint 插件 如下配置 setti...

  • VScode 自用插件

    1. Auto Import —— 自动imports模块,适用Typescript 和 TSX 2. Co...

  • 自用VScode插件

    Auto Close Tag 自动补充闭合标签 Auto Rename Tag 同步修改头尾标签 backgrou...

  • VSCode自用插件

    Beautify Beautify 插件可以快速格式化你的代码格式,让你在编写代码时杂乱的代码结构瞬间变得非常规整...

  • 自用vscode插件

  • Vscode格式化

    1、安装prettier插件;在vscode设置中格式化增加 2、在vscode插件当中设置插件的设置 设置完成之后保存

  • 前端学习笔记_1

    安装软件:Vscode 使用编辑器: 新建文件、文件夹、 设置自动保存、字号大小 搜索、替换文件 搜索、安装插件:...

  • react eslint prettier husky 配置

    2021.1.22 更新当 vscode 的自动保存操作中加入了 eslint 的规则时,保存自动 fix 命...

  • vscode 自用插件总结

    vscode 插件总结 Add jsdoc comments Beautify Bracket Pair Colo...

网友评论

      本文标题:vscode 自用插件自动保存

      本文链接:https://www.haomeiwen.com/subject/wvtzrctx.html