将react lint规则插入自定义钩子

时间:2020-06-16 17:18:11

标签: reactjs eslint

我已经在react中实现了一个自定义useEffect挂钩(比方说名为useEffectCustom),我希望将react lint规则应用于我的自定义挂钩。 例如:

[count, setCount] = useState(0);

// There is a warning fired by the linter here (missing dependencies: count and setCount)
useEffect(() => setCount(count+1), [])

// I would like this piece of code fires a warning as well!
useEffectCustom(() => setCount(count+1), [])

有人知道如何告诉eslint在我的自定义钩子上应用与useEffect相同的规则吗?

NB:我没有使用CRA,我可以在项目中修改几乎所有我想要的东西!

0 个答案:

没有答案