It would be nice if there were a way to make this rule ignore non-alphabetical characters (unicode category letter), for cases like these:
function CloseButton() {
return <div class="close">×</div>;
}
The character × is U+00D7: MULTIPLICATION SIGN
function Foo({ label, t }) {
return <li>{t('label')}: {label}</li>;
}