eslint-plugin-react-hooks配置
在使用create-react-app脚手架生成项目后,使用hooks特性没有eslint提示报错信息。可安装 eslint-plugin-react-hooks并配置package.json中的eslintConfig即可
安装
npm install eslint-plugin-react-hooks --save -dev
yarn add eslint-plugin-react-hooks --dev (或者)
配置package.json
"eslintConfig": {
"extends": "react-app",
"plugins": [
"react-hooks"
],
"rules": {
"react-hooks/rules-of-hooks": "error"
}
},
———————————————
版权声明:本文为CSDN博主「ZQD1997」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/zqd666/article/details/102961701