• VSCode 工具常用插件


    1、Debugger for Chrome

    方便运行代码,浏览器打开

    2、 GitLens — Git supercharged

     鼠标放到代码行上可以显示,改行的上一次修改记录

    3、Git History

    git log

    4、 Auto Close Tag

    自动完成闭合标签

    5、 Auto Rename Tag

    修改了前面的开始标签,自动remane 后面的闭合标签 

    6、Axios Snippets

    axios代码提示

    7、ES7+ React/Redux/React-Native snippets

    ES7代码片段提示

     

    8、Bootstrap 4, Font awesome 4, Font Awesome 5 Free & Pro snippets

    快捷键模板,设置模板快捷键,加快开发速度

     

     9、ESLint

     

    10、HTML CSS Support

     html 中的 id 和 class 的属性 提示

    11、 HTML Snippets

    html代码片段

    12、 Prettier - Code formatter

     还有格式验证之类的

    13、Stylelint

    样式的扩展

     

    14、Vetur

    15、 Vue VSCode Snippets

    vue的一些代码片段

    16、 VueHelper

     对vue一些属性或者其他方法的 helper说明

     17、Beautify

    18、 SFTP

     sftp拉代码的

     

     19、SCSS Formatter

     

    20、 vscode extension for ECharts

    vscode对 ECharts 的支持,

    settings.json

    1. {
    2. "editor.formatOnSave": true,
    3. "eslint.format.enable": true,
    4. "editor.tabSize": 2,
    5. "prettier.singleQuote": true,
    6. "breadcrumbs.enabled": true,
    7. "prettier.semi": false,
    8. "vetur.format.defaultFormatterOptions": {
    9. "js-beautify-html": {
    10. "wrap_attributes": "force-expand-multiline"
    11. },
    12. "prettyhtml": {
    13. "printWidth": 100,
    14. "singleQuote": false,
    15. "wrapAttributes": false,
    16. "sortAttributes": false
    17. }
    18. },
    19. "vetur.format.defaultFormatter.html": "prettier",
    20. "eslint.nodePath": "",
    21. "editor.codeActionsOnSave": {
    22. "source.fixAll.eslint": true
    23. },
    24. "diffEditor.ignoreTrimWhitespace": false,
    25. "[vue]": {
    26. "editor.defaultFormatter": "esbenp.prettier-vscode"
    27. },
    28. "auto-close-tag.activationOnLanguage": [
    29. "xml",
    30. "php",
    31. "blade",
    32. "ejs",
    33. "jinja",
    34. "javascript",
    35. "javascriptreact",
    36. "typescript",
    37. "typescriptreact",
    38. "plaintext",
    39. "markdown",
    40. "vue",
    41. "liquid",
    42. "erb",
    43. "lang-cfml",
    44. "cfml",
    45. "HTML (EEx)",
    46. "HTML (Eex)",
    47. "plist"
    48. ]
    49. }

    初次下载 VScode需要的准备工作

    需要先安装 node,并设置好 电脑系统变量 NODE_PATH 和 环境变量 path 的值

  • 相关阅读:
    volatile 关键字有什么用?它的实现原理是什么?
    OPENCV实战分水岭法二
    类的成员之二:方法(method)
    JavaScript 基础
    面试 - Reflect统一操作对象API
    Blender Shape Keys简明教程【Morph Target】
    遥测终端赋能水库泄洪监测预警,筑牢度汛安全防线!
    文件包含笔记
    背包问题总览
    基于C语言实现的足球信息查询系统 课程报告+项目源码+演示PPT+项目截图
  • 原文地址:https://blog.csdn.net/weixin_41184962/article/details/126471937