项目管理插件
- VScode_icons: 语言图标显示
- Project Manage: 项目管理
自动格式化代码
- Ctrl K+Ctrl D
- beautify;
一键安装不同语言的测试环境
Code Runner: 需安装 node.js/python/GCC 等相应的运行环境
自动检测代码规范
ESLint: 需要进行配置
前端Chrome 联动调试
Debugger for Chrome: 配置 launch.js 文件
- launch Chrome
- attach to Chrome: 1. 临时; 2. 永久
提升React 等前端开发效率的插件
- npm
- npm intellisense
- path intellisense
- typescript hero
- 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" //光标为线而不是方块```
网友评论