我们在我们的 React Native 应用程序中使用带有 eslint 的 Airbnb 代码样式指南。既然 React Native 不使用 HTML,那么这个规则react/no-unescaped-entities
有必要吗?
该规则迫使我使用:
<Text>{`"${this.state.quote}"`}</Text>
代替:
<Text>"{this.state.quote}"</Text>
我们在我们的 React Native 应用程序中使用带有 eslint 的 Airbnb 代码样式指南。既然 React Native 不使用 HTML,那么这个规则react/no-unescaped-entities
有必要吗?
该规则迫使我使用:
<Text>{`"${this.state.quote}"`}</Text>
代替:
<Text>"{this.state.quote}"</Text>