我已经是Standard的长期用户,现在我正在开发一个新项目,我被要求开始编写分号。
我尝试同时使用 xo、Babel 和 React,但当我尝试检查代码时不断收到错误:
document is not defined. no-undef
我尝试向 package.json 文件中的字段添加一个env选项,但没有成功。xo
我的xo配置:
"xo": {
"esnext": true,
"extends": "xo-react",
"space": true,
"rules": {
"react/jsx-space-before-closing": 0
}
}
Run Code Online (Sandbox Code Playgroud)