從事前端開發的這段期間,主要用過webstorm、sublime、vscode。對這三個編輯器不能說很熟悉,但也深有體會。有不少論壇或者羣裏的小夥伴常常討論他們哪一個更好,我以爲,各有各的好處,本身喜歡就好。webstorm集成了不少插件,功能很豐富,可是運行環境要求高,機子很差很容易卡。sublime很輕,感受有點像nodepad++輕巧,打開文件很快,自從使用vscode後,我就把它看成單文件編輯器使用。我的感受vscode用起來確實很方便,自帶git,也比較輕巧,集合了webstorm和sublime的優勢。下面是我對vscode的我的配置,以此記錄,方便之後換環境後從新配置。針對vue開發,不少部分部分不完善,僅供參考(持續更新...)javascript
{ // 選擇使用的集成終端,根據我的喜愛 "terminal.integrated.shell.windows": "D:\\Git\\git-cmd.exe", // 一個製表符等於的空格數 "editor.tabSize": 2, // 呈現空白字符的方式 "editor.renderWhitespace": "boundary", // 自帶的字體挺好的,不過我的更喜歡Monaco字體 "editor.fontFamily": "Monaco", "editor.fontSize": 13, // 啓用後,保存文件時在文件末尾插入一個最終新行。 "files.insertFinalNewline": true, // 啓用後,將在保存文件時剪裁尾隨空格。 "files.trimTrailingWhitespace": true, // 加載和側邊欄顯示時,忽略的文件/文件夾 "files.exclude": { "**/.svn": true, "**/.hg": true, "**/.DS_Store": true, // "**/_posts":true, "**/.sass-cache": true, "**/.vscode": true, "**/node_modules": true, "**/.idea": true }, // vue相關的設置 "files.associations": { "*.vue": "vue" }, "emmet.showAbbreviationSuggestions": true, "emmet.showExpandedAbbreviation": "always", "emmet.includeLanguages": { "vue-html": "html", "vue": "html" }, "emmet.syntaxProfiles": { "vue-html": "html", "vue": "html" }, // 安裝vetur以後會自帶format,自動保存時會講單引號變成雙引號,若是有本身的ESlint配置,最好將其關閉。 "vetur.format.defaultFormatter.js": "none", // ESLint插件的配置 "files.autoSave": "off", "eslint.validate": [ "javascript", "javascriptreact", "html", { "language": "vue", "autoFix": true } ], "eslint.options": { "plugins": ["html"] }, // fileHeader插件的配置 "fileheader.Author": "fmain", "fileheader.LastModifiedBy": "fmain", "fileheader.tpl": "<-- Created on {createTime} By {author} -->\n", "fileHeaderComment.parameter": { "*": { "author": "fmain", "company": "CAICT" } }, "fileHeaderComment.template": { "*": [ "/*", "* @Author: ${author}", "* Created on ${datetime24h}", "* Copyright (c) ${year} ${company}", "*/" ], "-": [ "<-- Created by ${author} on ${date} -->" ] } }
傳送門: VSCode使用技巧css