美文网首页
react关闭eslint提醒(亲测有效)

react关闭eslint提醒(亲测有效)

作者: 冬天的_太阳 | 来源:发表于2020-01-16 10:55 被阅读0次
    • 第一步:
    npm run eject
    
    • 第二步:在package.json 中修改代码
    
    "eslintConfig": {
        "extends": "react-app",
        "rules": {
          "no-undef": "off",
          "no-restricted-globals": "off",
          "no-unused-vars": "off"
        }
    }
    
    • 第三步:重启项目
    npm start
    
    • 如果出现缺少依赖,那么就要重新安装依赖。

    相关文章

      网友评论

          本文标题:react关闭eslint提醒(亲测有效)

          本文链接:https://www.haomeiwen.com/subject/bukfzctx.html