vscode有哪些插件好用? vscode部分插件的使用方法

  {

  "editor.formatOnSave": true,

  // "eslint.autoFixOnSave": true,

  // 自动修复

  "editor.codeActionsOnSave": {

  "source.fixAll.eslint": true,

  },

  // 配置 ESLint 检查的文件类型

  "eslint.validate": ["javascript","vue","html"],

  "window.zoomLevel": 1,

  "editor.fontSize": 16,

  "git.confirmSync": false,

  "editor.tabSize": 2,

  "editor.detectIndentation": false,

  "workbench.settings.useSplitJSON": true,

  "files.autoSaveDelay": 1000,

  "browserSync.config": {

  },

  "beautify.language": {

  "js": {

  "type": [

  "javascript",

  "json",

  "jsonc"

  ],

  "filename": [

  ".jshintrc",

  ".jsbeautifyrc"

  ]

  },

  "css": [

  "css",

  "less",

  "scss"

  ],

  "html": [

  "htm",

  "html",

  "vue"

  ]

  },

  "vetur.format.defaultFormatter.html": "js-beautify-html",

  "dart.debugExternalLibraries": true,

  "thiefBook.filePath": "C:\Users\Administrator\Documents\山沟皇帝.txt",

  "editor.suggestSelection": "first",

  "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",

  "todo-tree.tree.showScanModeButton": false,

  "vetur.ignoreProjectWarning": true,

  "emmet.excludeLanguages": [

  "markdown"

  ],

  "fileheader.configObj": {

  "createFileTime": true,//设置为true则为文件新建时候作为date,否则注释生成时间为date

  "autoAdd": true,//自动生成注释,老是忘记的同学可以设置

  "annotationStr": {

  "head": "/*",

  "middle": " * @",

  "end": " */",

  "use": true//设置自定义注释可用

  },

  },

  "fileheader.cursorMode": {

  "description":"",

  "param ":"",

  "return":""

  },

  "fileheader.customMade": {

  "Description":"" ,//文件内容描述

  "Author":"cxk",//编辑人

  "Date": "Do not edit",//时间

  "LastEditTime": "Do not edit",

  "LastEditors": "cxk",

  }

  }