react怎么删除eslint
时间:2022-12-30 09:46
react删除eslint的方法:1、执行“npm run eject”命令;2、在package.json中修改代码为“ "eslintConfig": {"extends": ["react-app","react-app/jest"],"rules": {"no-undef": "off"...}”;3、重启项目即可。 本教程操作环境:Windows10系统、react17版、Dell G3电脑。 react怎么删除eslint? React关闭Eslint代码检查 1、npm run eject 2、在package.json 中修改代码 3、重启项目 推荐学习:《react视频教程》 以上就是react怎么删除eslint的详细内容,更多请关注gxlsystem.com其它相关文章! "eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-undef": "off",
"no-restricted-globals": "off",
"no-unused-vars": "off"
}
},