taro doctor 检查 ESLint 后输出的结果很奇怪
-
Taro v1.3.19
-
直接用 taro 生成的初始项目,就会提示
warning config should be placed after componentDidMount react/sort-comp
-
此外,随便写一条循环语句,都会报错
error 'a' is defined but never used. Allowed unused vars must match /Taro/u no-unused-vars
。
比如:
for (const a in window.b) { a = a++ }
想问问这是怎么回事? 有人修复过么?
-