|
|
本帖最后由 blake 于 2017-8-19 14:51 编辑
插件列表GitLens 显示文件最近的commit和作者,显示当前行commit信息 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
- }</pre>
复制代码
|
|