使Vue开发如鱼得水的VSCode扩展

本文转载自微信公众号「前端有道」,作者星野丶。转载本文请联系前端有道公众号。

创新互联建站长期为上1000+客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为重庆企业提供专业的网站建设、成都网站建设,重庆网站改版等技术服务。拥有十多年丰富建站经验和众多成功案例,为您定制开发。

作为一个 Vue 搬砖工,我一直在为 Vue 开发寻找合适的 VS Code 扩展。以下是一些好用的扩展,可以让我们在搬砖时更加轻松。

目录

  • Vetur 开发Vue的童鞋必装插件之一
  • Volar 开发Vue3.0的童鞋必装插件之一
  • Simplified Language 简体语言包
  • 翻译(英汉词典)
  • Material Icon Theme 图标主题
  • VSCode Icons 图标主题
  • Bracket Pair Colorizer 彩色的括号
  • GitLens 增强Git工具
  • Git History
  • Path Intellisense 路径智能提示
  • Auto Rename Tag 自动关闭标签
  • Auto Close Tag 自动修改标签名
  • Code Runner 运行代码
  • Live Server 搭建本地服务器的静态页面
  • Prettier - Code formatter 代码格式化
  • ESlint 代码检测

Vetur

这款插件相信不用我多说,想必大家都知道或者用过,它提供了 Vue 特定的语法语义突出显示、代码片段和API语法以错误检查调试等。图片

官方地址:https://marketplace.visualstudio.com/items?itemName=octref.vetur

Volar(Vue3.0开发)

如果你的项目Vue3.0推荐用这款插件,体验上会更好。

Volar 是一个专为 Vue 3 构建的语言支持插件,它基于@vue/reactivity按需计算 TypeScript 来优化类似于原生 TypeScript 语言服务的性能。

官方地址:https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar

Chinese (Simplified) Language Pack for Visual Studio Code

这款插件把VSCode的英文转换成中文。对我我这种英语渣渣特别刚需。而且这个是官方汉化包,理解没毛病。

每当VS code软件更新后,有变会英文,只需要关闭软件重启就行,或者重新安装一下这款插件。

官方地址:Chinese (Simplified) Language Pack for Visual Studio Code

翻译(英汉词典) 代码翻译

在线翻译,翻译出来的结果真慢,吐槽。这款本地77万词条英汉词典,不依赖任何在线翻译API,无查询次数限制,秒输出结果。

这款插件支持驼峰、小驼峰、下划线等等写法来写变量名、属性名、类名和方法名的。

-w1205

官方地址:https://marketplace.visualstudio.com/items?itemName=CodeInChinese.EnglishChineseDictionary

Material Icon Theme

非常齐全的图标,可以说你想要包含在这里面,只截了其中一小部分图。

-w895

官方地址:https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme

vscode-icons

这一款是VSCode官方的图标主题包,看个人喜好选择图标库。效果如下

-w330

官方地址:https://marketplace.visualstudio.com/items?itemName=vscode-icons-team.vscode-icons

Bracket Pair Colorizer

这个插件使用颜色来标识匹配的括号。代码非常多的情况,括号也就变的非常多,如果删除某个属性名对象,没有颜色区分可以就会误删。

不过正常来说不推荐括号写的很多,推荐用扁平化写法,虽然颜色区分代码过长,看的也是脑壳疼。

官方地址:https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer

GitLens

增强Git功能构建到Visual Studio代码可视化代码作者一眼就通过Git指责注释和代码镜头,无缝导航和探索Git存储库。

官方地址:https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens

Git History

查看git日志、文件历史、比较分支或提交。

当我们需要查看文件的历史,可能会借助另外一个Git UI工具查看,耶,只要点击文件的右上角图标就能看到历史代码还有代码差异性。

官方地址:https://marketplace.visualstudio.com/items?itemName=donjayamanne.githistory

Path Intellisense 路径智能提示

当我们需要引入某个文件或者图片,文件夹层级可能很多,我们可以通过这款插件来提示我们当前下的文件有哪些。

官方地址:https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense

Auto Rename Tag

自动重命名成对的HTML/XML标签。

当我们修改 的标签时就会生成 。

官方地址:https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-rename-tag

Auto Close Tag

自动添加HTML/XML关闭标签。

当我们写下 时就会生成 。

官方地址:https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag

Code Runner

运行代码片段或多种语言的代码文件,支持C、Java、JavaScript、PHP、Python等

只需要点击鼠标右键,选择 Run Code 就能得到结果

官方地址:https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner

Live Server

在本地服务器搭建自动重新加载静态特性HTML页面。

html页面中鼠标右键选择 open with Live Server

官方地址:https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer

Prettier - Code formatter

Prettier是一个代码格式化程序。它通过解析代码并使用它自己的规则重新打印代码来强制实现一致的样式,这些规则考虑到最大行长度,在必要时格式化代码。

 
 
 
 
  1. // vscode setting.json
  2. {
  3.   "editor.formatOnSave": false, // 在保存时格式化文件
  4.   "editor.defaultFormatter": "esbenp.prettier-vscode",
  5.   "[javascript]": {
  6.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  7.   },
  8.   "[vue]": {
  9.     "editor.defaultFormatter": "esbenp.prettier-vscode"
  10.   }
  11. }

官方地址:https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode

ESlint

在一个多人协同开发的团队中,统一的代码编写规范非常重要。一套规范可以让我们编写的代码达到一致的风格,提高代码的可读性和统一性。自然维护性也会有所提高。

以下eslint规范代码依托于 vue 官方的 eslint 规则 eslint-config-vue 做了少许的修改。大家可以按照自己的需求进行定制化配置。

 
 
 
 
  1. // .eslintrc.js
  2. module.exports = {
  3.   root: true,
  4.   parserOptions: {
  5.     parser: 'babel-eslint',
  6.     sourceType: 'module'
  7.   },
  8.   env: {
  9.     browser: true,
  10.     node: true,
  11.     es6: true,
  12.   },
  13.   extends: ['plugin:vue/recommended', 'eslint:recommended'],
  14.   // add your custom rules here
  15.   //it is base on https://github.com/vuejs/eslint-config-vue
  16.   rules: {
  17.     "vue/max-attributes-per-line": [2, {
  18.       "singleline": 10,
  19.       "multiline": {
  20.         "max": 1,
  21.         "allowFirstLine": false
  22.       }
  23.     }],
  24.     "vue/singleline-html-element-content-newline": "off",
  25.     "vue/multiline-html-element-content-newline":"off",
  26.     "vue/name-property-casing": ["error", "PascalCase"],
  27.     "vue/no-v-html": "off",
  28.     'accessor-pairs': 2,
  29.     'arrow-spacing': [2, {
  30.       'before': true,
  31.       'after': true
  32.     }],
  33.     'block-spacing': [2, 'always'],
  34.     'brace-style': [2, '1tbs', {
  35.       'allowSingleLine': true
  36.     }],
  37.     'camelcase': [0, {
  38.       'properties': 'always'
  39.     }],
  40.     'comma-dangle': [2, 'never'],
  41.     'comma-spacing': [2, {
  42.       'before': false,
  43.       'after': true
  44.     }],
  45.     'comma-style': [2, 'last'],
  46.     'constructor-super': 2,
  47.     'curly': [2, 'multi-line'],
  48.     'dot-location': [2, 'property'],
  49.     'eol-last': 2,
  50.     'eqeqeq': ["error", "always", {"null": "ignore"}],
  51.     'generator-star-spacing': [2, {
  52.       'before': true,
  53.       'after': true
  54.     }],
  55.     'handle-callback-err': [2, '^(err|error)$'],
  56.     'indent': [2, 2, {
  57.       'SwitchCase': 1
  58.     }],
  59.     'jsx-quotes': [2, 'prefer-single'],
  60.     'key-spacing': [2, {
  61.       'beforeColon': false,
  62.       'afterColon': true
  63.     }],
  64.     'keyword-spacing': [2, {
  65.       'before': true,
  66.       'after': true
  67.     }],
  68.     'new-cap': [2, {
  69.       'newIsCap': true,
  70.       'capIsNew': false
  71.     }],
  72.     'new-parens': 2,
  73.     'no-array-constructor': 2,
  74.     'no-caller': 2,
  75.     'no-console': 'off',
  76.     'no-class-assign': 2,
  77.     'no-cond-assign': 2,
  78.     'no-const-assign': 2,
  79.     'no-control-regex': 0,
  80.     'no-delete-var': 2,
  81.     'no-dupe-args': 2,
  82.     'no-dupe-class-members': 2,
  83.     'no-dupe-keys': 2,
  84.     'no-duplicate-case': 2,
  85.     'no-empty-character-class': 2,
  86.     'no-empty-pattern': 2,
  87.     'no-eval': 2,
  88.     'no-ex-assign': 2,
  89.     'no-extend-native': 2,
  90.     'no-extra-bind': 2,
  91.     'no-extra-boolean-cast': 2,
  92.     'no-extra-parens': [2, 'functions'],
  93.     'no-fallthrough': 2,
  94.     'no-floating-decimal': 2,
  95.     'no-func-assign': 2,
  96.     'no-implied-eval': 2,
  97.     'no-inner-declarations': [2, 'functions'],
  98.     'no-invalid-regexp': 2,
  99.     'no-irregular-whitespace': 2,
  100.     'no-iterator': 2,
  101.     'no-label-var': 2,
  102.     'no-labels': [2, {
  103.       'allowLoop': false,
  104.       'allowSwitch': false
  105.     }],
  106.     'no-lone-blocks': 2,
  107.     'no-mixed-spaces-and-tabs': 2,
  108.     'no-multi-spaces': 2,
  109.     'no-multi-str': 2,
  110.     'no-multiple-empty-lines': [2, {
  111.       'max': 1
  112.     }],
  113.     'no-native-reassign': 2,
  114.     'no-negated-in-lhs': 2,
  115.     'no-new-object': 2,
  116.     'no-new-require': 2,
  117.     'no-new-symbol': 2,
  118.     'no-new-wrappers': 2,
  119.     'no-obj-calls': 2,
  120.     'no-octal': 2,
  121.     'no-octal-escape': 2,
  122.     'no-path-concat': 2,
  123.     'no-proto': 2,
  124.     'no-redeclare': 2,
  125.     'no-regex-spaces': 2,
  126.     'no-return-assign': [2, 'except-parens'],
  127.     'no-self-assign': 2,
  128.     'no-self-compare': 2,
  129.     'no-sequences': 2,
  130.     'no-shadow-restricted-names': 2,
  131.     'no-spaced-func': 2,
  132.     'no-sparse-arrays': 2,
  133.     'no-this-before-super': 2,
  134.     'no-throw-literal': 2,
  135.     'no-trailing-spaces': 2,
  136.     'no-undef': 2,
  137.     'no-undef-init': 2,
  138.     'no-unexpected-multiline': 2,
  139.     'no-unmodified-loop-condition': 2,
  140.     'no-unneeded-ternary': [2, {
  141.       'defaultAssignment': false
  142.     }],
  143.     'no-unreachable': 2,
  144.     'no-unsafe-finally': 2,
  145.     'no-unused-vars': [2, {
  146.       'vars': 'all',
  147.       'args': 'none'
  148.     }],
  149.     'no-useless-call': 2,
  150.     'no-useless-computed-key': 2,
  151.     'no-useless-constructor': 2,
  152.     'no-useless-escape': 0,
  153.     'no-whitespace-before-property': 2,
  154.     'no-with': 2,
  155.     'one-var': [2, {
  156.       'initialized': 'never'
  157.     }],
  158.     'operator-linebreak': [2, 'after', {
  159.       'overrides': {
  160.         '?': 'before',
  161.         ':': 'before'
  162.       }
  163.     }],
  164.     'padded-blocks': [2, 'never'],
  165.     'quotes': [2, 'single', {
  166.       'avoidEscape': true,
  167.       'allowTemplateLiterals': true
  168.     }],
  169.     'semi': [2, 'never'],
  170.     'semi-spacing': [2, {
  171.       'before': false,
  172.       'after': true
  173.     }],
  174.     'space-before-blocks': [2, 'always'],
  175.     'space-before-function-paren': [2, 'never'],
  176.     'space-in-parens': [2, 'never'],
  177.     'space-infix-ops': 2,
  178.     'space-unary-ops': [2, {
  179.       'words': true,
  180.       'nonwords': false
  181.     }],
  182.     'spaced-comment': [2, 'always', {
  183.       'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ',']
  184.     }],
  185.     'template-curly-spacing': [2, 'never'],
  186.     'use-isnan': 2,
  187.     'valid-typeof': 2,
  188.     'wrap-iife': [2, 'any'],
  189.     'yield-star-spacing': [2, 'both'],
  190.     'yoda': [2, 'never'],
  191.     'prefer-const': 2,
  192.     'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
  193.     'object-curly-spacing': [2, 'always', {
  194.       objectsInObjects: false
  195.     }],
  196.     'array-bracket-spacing': [2, 'never']
  197.   }
  198. }

官方地址:https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint

本文题目:使Vue开发如鱼得水的VSCode扩展
当前地址:http://www.shufengxianlan.com/qtweb/news21/15421.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联