All strings in React Native should be wrapped with a Text component.
The following patterns are considered warnings:
<View>some text</View>
const text = 'some text';
<View>{`${text}`}</View>
The following patterns are not considered warnings:
<View><Text>some text</Text></View>
const text = 'some text';
<View><Text>{`${text}`}</Text></View>
- "skip" – allow to skip checking for the array of custom components