这是我的暗号:
const func = () => {
return (
<div >
you're free
</div>
)}
以某种方式,eslint 用错误 error HTML entities must be escaped react/no-unescaped-entities
标记行“ you’re free”
然而从我所看到的 jsx 已经避开了撇号。我可以看到字 you're free
是没有问题的呈现。如果我以 '
的形式转义它,那么搜索字符串将会非常困难(我希望在编辑器中搜索 you're free
会返回一个命中。但是显然编辑器会错过,因为文本实际上是 you're free
)
那么,解决这个 eslint 异常的最佳方法是什么呢?