react刪除eslint的方法:1、執行「npm run eject」指令;2、在package.json中修改程式碼為「 "eslintConfig": {"extends": ["react-app"," react-app/jest"],"rules": {"no-undef": "off"...}」;3、重新啟動項目即可。
本教學操作環境:Windows10系統、react17版、Dell G3電腦。
react要怎麼刪除eslint?
React關閉Eslint程式碼檢查
1、npm run eject
2、在package.json 中修改程式碼
"eslintConfig": { "extends": [ "react-app", "react-app/jest" ], "rules": { "no-undef": "off", "no-restricted-globals": "off", "no-unused-vars": "off" } },
3、重啟專案
推薦學習:《react影片教學》
以上是react怎麼刪除eslint的詳細內容。更多資訊請關注PHP中文網其他相關文章!