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

一些eslint的报红及解决

原因是使用了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的报红及解决

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

一些eslint的报红及解决

 

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

一些eslint的报红及解决

 一些eslint的报红及解决

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

一些eslint的报红及解决

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-04-09
  • 2021-09-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
猜你喜欢
  • 2022-01-11
  • 2022-12-23
  • 2021-12-28
  • 2021-08-28
  • 2022-12-23
  • 2021-06-15
相关资源
相似解决方案