Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 291 Bytes

File metadata and controls

14 lines (10 loc) · 291 Bytes

no-single-tag-to-translate

Tip

This rule is included into the lingui/recommended config

Ensures <Trans></Trans> isn't wrapping a single element unnecessarily

// nope ⛔️
<Trans><strong>Foo bar</strong></Trans>

// ok ✅
<strong><Trans>Foo bar</Trans></strong>