VSCode React Native配置,vscodereact
分享于 点击 49367 次 点评:263
VSCode React Native配置,vscodereact
React Native Tools
最基本的工具
ESLint
代码检查的插件,一定要有,很不错.
tortoise-svn
svn管理工具
Babel ES6/ES7
ES6,ES7语法加亮检查插件
Dash
在线文档
Path Intellisense
可以增加已经路径或文件的提示
Typings auto installer
根据package.json 自动加载依赖
Auto Close Tag
自动添加标签
首选项中的设置:
为了让eslint在保存的时候自动格式化
“window.zoomLevel”: 1,
“eslint.autoFixOnSave”: true,
“eslint.validate”: [
“javascript”,
“javascriptreact”,
{
“language”: “html”,
“autoFix”: true
},
{
“language”: “vue”,
“autoFix”: true
}
],
“javascript.implicitProjectConfig.experimentalDecorators”: true,
“editor.formatOnSave”: true,
相关文章
- 暂无相关文章
用户点评