VS Code 常用外掛列表
阿新 • • 發佈:2018-12-17
外掛列表
Can I Use HTML5、CSS3、SVG的瀏覽器相容性檢查
Code Runner 執行選中程式碼段(支援大量語言,包括Node)
CodeBing 在VSCode中彈出瀏覽器並搜尋,可編輯搜尋引擎
Emoji 在程式碼中輸入emoji
ESLint ESLint外掛,高亮提示
File Peek 根據路徑字串,快速定位到檔案
Git Blame 在狀態列顯示當前行的Git資訊
GitLens 顯示檔案最近的commit和作者,顯示當前行commit資訊
Lodash Lodash程式碼段
npm 執行npm命令
REST Client 傳送REST風格的HTTP請求
Test Spec Generator 測試用例生成(支援chai、should、jasmine)
Version Lens package.json檔案顯示模組當前版本和最新版本
vetur 目前比較好的Vue語法高亮
VueHelper Vue2程式碼段(包括Vue2 api、vue-router2、vuex2)
附錄:VSCode首選項配置
{ "editor.tabSize": 2, "files.associations": { "*.vue": "vue" }, "eslint.autoFixOnSave": true, "eslint.options": { "extensions": [ ".js", ".vue" ] }, "eslint.validate": [ "javascript", "javascriptreact", "vue", "vue-html" ], "search.exclude": { "**/node_modules": true, "**/bower_components": true, "**/dist": true }, "emmet.syntaxProfiles": { "javascript": "jsx", "vue": "html", "vue-html": "html" }, "extensions.autoUpdate": true, "editor.renderWhitespace": "boundary", "editor.cursorBlinking": "smooth", "workbench.welcome.enabled": true }
轉載:https://www.cnblogs.com/savokiss/p/6474955.html