We are using the Airbnb code style guide with eslint in our React Native app. Since React Native does not use HTML, is the rule react/no-unescaped-entities
necessary?
The rule is forcing me to use:
<Text>{`"${this.state.quote}"`}</Text>
instead of:
<Text>"{this.state.quote}"</Text>