react 关闭 eslint代码校验

1,363 阅读1分钟

在package.json把eslintConfig替换成下列代码

"eslintConfig": {
    "rules": {
      "no-undef": "off",
      "no-restricted-globals": "off",
      "no-unused-vars": "off"
    }
  },