美文网首页我爱编程
VS code 简单配置

VS code 简单配置

作者: 猫局 | 来源:发表于2018-05-15 17:21 被阅读0次

    项目管理插件

    1. VScode_icons: 语言图标显示
    2. Project Manage: 项目管理

    自动格式化代码

    1. Ctrl K+Ctrl D
    2. beautify;

    一键安装不同语言的测试环境

    Code Runner: 需安装 node.js/python/GCC 等相应的运行环境

    自动检测代码规范

    ESLint: 需要进行配置

    前端Chrome 联动调试

    Debugger for Chrome: 配置 launch.js 文件

    1. launch Chrome
    2. attach to Chrome: 1. 临时; 2. 永久

    提升React 等前端开发效率的插件

    1. npm
    2. npm intellisense
    3. path intellisense
    4. typescript hero
    5. Intellisense for CSS class name

    继承美化终端

    打开terminal: ctrl+`
    配置setting:

     "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", // 使用git bash  
     "terminal.integrated.confirmOnExit": true,  //退出终端需确认  
     "terminal.integrated.fontFamily": "'Consolas','华文细黑'", // 终端字体  
     "terminal.integrated.cursorStyle": "line" //光标为线而不是方块```
    
    

    相关文章

      网友评论

        本文标题:VS code 简单配置

        本文链接:https://www.haomeiwen.com/subject/uylydftx.html