踩坑日记 4 - react 中如何禁用 eslint 提醒

在 package.json 中修改为以下:

1
2
3
4
5
6
7
8
eslintConfig": {
"extends": "react-app",
"rules": {
"no-undef": "off",
"no-restricted-globals": "off",
"no-unused-vars": "off"
}
}

然后重启 npm start