博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
react项目环境
阅读量:6875 次
发布时间:2019-06-26

本文共 1533 字,大约阅读时间需要 5 分钟。

vscode扩展

  1. language-stylus
  2. JavaScript Standard Style
  3. Document this
  4. React-Native/React/Redux snippets for es6/es7
  5. JavaScript Standard Style(用standard.js做代码规范)

vscode设置

{    "editor.tabSize": 2,    "editor.fontSize": 17,    "files.autoSave": "off",    "javascript.validate.enable": false,    "emmet.triggerExpansionOnTab": true,    "standard.autoFixOnSave": true,    "standard.validate": [{            "language": "javascript",            "autoFix": true        },        {            "language": "javascriptreact",            "autoFix": true        },        {            "language": "vue",            "autoFix": true        },        "html"    ],    // "standard.options": {    //     "plugins": [    //         "html"    //     ]    // },    "workbench.statusBar.visible": false,    "files.associations": {        "*.vue": "vue"    },    "window.zoomLevel": 0,    "java.errors.incompleteClasspath.severity": "ignore",    "extensions.ignoreRecommendations": false,    "javascript.updateImportsOnFileMove.enabled": "always",    "workbench.activityBar.visible": true,    "workbench.sideBar.location": "right",    "editor.fontFamily": "Monaco, 'Courier New', monospace",    "editor.fontWeight": "300",    "git.enableSmartCommit": true,    "explorer.confirmDelete": false,    "workbench.colorTheme": "Atom One Dark",    "gitlens.views.search.files.layout": "tree",    "editor.minimap.enabled": true,    "typescript.check.npmIsInstalled": false,    "[javascriptreact]": {        "editor.defaultFormatter": "esbenp.prettier-vscode"    }}复制代码

转载地址:http://qimfl.baihongyu.com/

你可能感兴趣的文章
图解git原理与日常实用指南
查看>>
告诉你微信域名被封的原因和防封方案
查看>>
[sublime系列文章] sublime text 3插件配置说明
查看>>
Python 进阶之路 (七) 隐藏的神奇宝藏:探秘Collections
查看>>
执行计划小总结
查看>>
egg(114)--egg之订单详情
查看>>
关于区块链那些事(用Python3体现)
查看>>
我从编程教室毕业
查看>>
使用 webpack 4 和 Babel 7 构建 React 应用及如何引入 Material Design
查看>>
Laravel+Dingo/Api 自定义响应
查看>>
【PHP 每日函数】第 01 周期
查看>>
SpiderData 2019年2月18日 DApp数据排行榜
查看>>
第十二天-《企业应用架构模式》-对象-关系结构模式
查看>>
这40款优质APP大合集,总有一个适合你!
查看>>
从理论到实践 全面理解HTTP/2
查看>>
JavaScript五十问——对比来说CSS的Grid与FlexBox(上篇)
查看>>
使用音频转换器怎么转换电影的格式?
查看>>
35. Search Insert Position
查看>>
webpack—url-loader 解决项目中图片打包路径问题
查看>>
thinkphp源码分析(四)—错误及异常处理篇
查看>>