用create-react-app构建的react项目怎么关闭eslint

修改package.json

  "eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ],
    "rules": {
      "no-undef": "off",
      "no-restricted-globals": "off",
      "no-unused-vars": "off"
    }
  },
原文地址:https://www.cnblogs.com/GoTing/p/15499278.html