当前位置 : 主页 > 手机开发 > 其它 >

vscode vue 项目保存运行lint进行代码修正

来源:互联网 收集:自由互联 发布时间:2021-06-19
{ "editor.tabSize": 2, "files.associations": { "*.vue": "vue" }, "eslint.autoFixOnSave": true, "eslint.options": { "extensions": [ ".js", ".vue" ] }, "eslint.validate": [ "javascript",{ "language": "vue", "autoFix": true },"html", "vue" ],

 

{
   "editor.tabSize": 2,
   "files.associations": {
       "*.vue": "vue"
   },
   "eslint.autoFixOnSave": true,
   "eslint.options": {
       "extensions": [
           ".js",
           ".vue"
       ]
   },
 "eslint.validate": [
     "javascript",{
         "language": "vue",
         "autoFix": true
     },"html",
     "vue"
 ],
   "search.exclude": {
       "**/node_modules": true,
       "**/bower_components": true,
       "**/dist": true
   },
   "emmet.syntaxProfiles": {
       "javascript": "jsx",
       "vue": "html",
       "vue-html": "html"
   },
   "git.confirmSync": false,
   "window.zoomLevel": 0,
   "editor.renderWhitespace": "boundary",
   "editor.cursorBlinking": "smooth",
   "editor.minimap.enabled": true,
   "editor.minimap.renderCharacters": false,
   "editor.fontFamily": "‘Courier New‘, monospace, ‘Droid Sans Fallback‘",
   "window.title": "${dirty}${activeEditorMedium}${separator}${rootName}",
   "editor.codeLens": true,
   "editor.snippetSuggestions": "top",
 }
 
网友评论