Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 333 Bytes

i18n-no-placeholders-only.md

File metadata and controls

17 lines (11 loc) · 333 Bytes

Prevent using only placeholders in translatable strings (i18n-no-placeholders-only)

Translatable strings that consist of nothing but a placeholder cannot be translated.

Rule details

Examples of incorrect code for this rule:

__( '%s' );

Examples of correct code for this rule:

__( 'Hello %s' );