踩坑日记 4 - react 中如何禁用 eslint 提醒 2021-08-08 踩坑日记 React 字数统计: 31(字) 阅读时长: 1(分) 在 package.json 中修改为以下: 12345678eslintConfig": { "extends": "react-app", "rules": { "no-undef": "off", "no-restricted-globals": "off", "no-unused-vars": "off" }} 然后重启 npm start