我正在使用Code Spell Checker,我想知道是否有可能忽略掉Lorem Ipsum文本而被标记为“未知单词”,而不必在我的"cSpell.userWords"
列表中添加每个单词。 / p>
答案 0 :(得分:1)
是的,这是可能的。
for (let i = 0; i < this.colorPallete.length; ++i) {
this.nums.push(i);
this.circles.push(
<React.Fragment key={i}>
<TouchableHighlight
onPress={() => {
this.selectCircle(i);
}}
style={[
styles.colorCircle,
{
borderWidth: this.state.bgWidth[i],
borderColor: this.colorPallete[i],
},
]}>
<View
style={[
styles.innerCircle,
{
backgroundColor: this.colorPallete[i],
borderColor: this.colorPallete[i],
},
]}
/>
</TouchableHighlight>
</React.Fragment>
);
}
。cSpell.language
添加到列表中。答案 1 :(得分:-1)