ReactJS_如何關閉eslintConfig

到package.json中
查找到



"eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ]
  },



然後改為




"eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ],
    "rules": {
      "no-undef" : "off",
      "no-restrited-globals":"off",
      "no-unused-vars":"off"
    }
  },

留言