一些eslint的报红及解决


1、iterators/generators require regenerator-runtime, which is too heavyweight for this guide to allow them. Separately, loops should be avoided in favor of array iterations.eslintno-restricted-syntax

原因是使用了for infor of循环,替换为forEach/map循环即可解决。

 

2、React Hook useEffect has a missing dependency: 'queryList'. Either include it or remove the dependency array.eslintreact-hooks/exhaustive-deps

原因是缺少依赖项,但有时我们并不需要写依赖项,加一句:// eslint-disable-next-line react-hooks/exhaustive-deps即可解决。

 

3、Assignment to property of function parameter 'item'.eslintno-param-reassign

 

原因是循环中不允许直接修改每一项,不能直接对其做增加、删除、修改操作。新建一个对象,在新的对象上做操作就好。如下图:

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM