VsCode最實用插件集合

工欲善其事,必先利其器javascript

插件位置

C:\Users(用戶)\Administrator(你的用戶名).vscode\extensionscss

插件集合https://www.oschina.net/translate/top-visual-studio-code-extensionshtml

部分演示https://blog.csdn.net/qq_38906523/article/details/77278403vue

解決cpu佔用太高

文件->首選項->搜索「search.followSymlinks」改成falsejava

一、 Atom One Dark Theme (主題)node

二、Bracket Pair Colorizer (對括號對進行着色)react

三、Eslint 代碼規範git

四、git Lensvue-router

五、Vetur (vue代碼高亮)vuex

六、vscode-icons (文件圖標)

七、Path Intellisense (路徑提示器)

八、filesize (會在左下角顯示文件大小)

九、Indenticator (代碼縮進)

十、VueHelper Vue2代碼段(包括Vue2 api、vue-router二、vuex2)

十一、add jsdoc comments / Complete JSDoc Tags / fileheader (文檔註釋)

十二、Auto Rename Tag (修改html標籤,自動幫你完成尾部閉合標籤的同步修改)

1三、beautify (代碼美化)

1四、JavaScript (ES6) code snippets

1五、EditorConfig for VS Code(統一的編輯配置對團隊開發頗有用)

1六、IntelliSense for CSS class names (CSS 類名補全,會自動掃描整個項目裏面的 CSS 類名並在你輸入類名時作智能提示)

1七、Live Server (http服務器)、會出現問題

1八、view in browse (瀏覽器預覽html)ctrl + f1

Auto Close Tag 自動閉合HTML標籤

Auto Rename Tag 修改HTML標籤時,自動修改匹配的標籤

Bookmarks 添加行書籤

Can I Use HTML五、CSS三、SVG的瀏覽器兼容性檢查

Code Runner 運行選中代碼段(支持大量語言,包括Node)

CodeBing 在VSCode中彈出瀏覽器並搜索,可編輯搜索引擎

Color Highlight 顏色值在代碼中高亮顯示

Color Picker 拾色器

Document This 註釋文檔生成

EditorConfig for VS Code EditorConfig 插件

Emoji 在代碼中輸入emoji

ESLint ESLint插件,高亮提示

File Peek 根據路徑字符串,快速定位到文件

Font-awesome codes for html FontAwesome提示代碼段

ftp-sync 同步文件到ftp

Git Blame 在狀態欄顯示當前行的Git信息

Git History(git log) 查看git log

GitLens 顯示文件最近的commit和做者,顯示當前行commit信息

Guides 高亮縮進基準線

Gulp Snippets Gulp代碼段

HTML CSS Class Completion CSS class提示

HTML CSS Support css提示(支持vue)

HTMLHint HTML格式提示

Indenticator 縮進高亮

JavaScript (ES6) code snippets ES6語法代碼段

language-stylus Stylus語法高亮和提示

Lodash Lodash代碼段

markdownlint Markdown格式提示

MochaSnippets Mocha代碼段

Node modules resolve 快速導航到Node模塊

npm 運行npm命令

npm Intellisense 導入模塊時,提示已安裝模塊名稱

Output Colorizer 彩色輸出信息

Partial Diff 對比兩段代碼或文件

Path Autocomplete 路徑完成提示

Path Intellisense 另外一個路徑完成提示

Prettify JSON 格式化JSON

Project Manager 快速切換項目

REST Client 發送REST風格的HTTP請求

Settings Sync VSCode設置同步到Gist

String Manipulation 字符串轉換處理(駝峯、大寫開頭、下劃線等等)

Test Spec Generator 測試用例生成(支持chai、should、jasmine)

TODO Parser Todo管理

Version Lens package.json文件顯示模塊當前版本和最新版本

vetur 目前比較好的Vue語法高亮

View Node Package 快速打開選中模塊的主頁和代碼倉庫

vscode-icons 文件圖標,方便定位文件

VSCode Great Icons 文件圖標拓展

VueHelper Vue2代碼段(包括Vue2 api、vue-router二、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
}
相關文章
相關標籤/搜索