一些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

 

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

原文地址:https://www.cnblogs.com/afafaa/p/14793050.html