WPCS recently deprecated a temporary property called check_translator_comments that is currently being used in the HM-Minimum ruleset.
Commit details here: WordPress/WordPress-Coding-Standards@31064cf
Affected code is here:
|
<rule ref="WordPress.WP.I18n"> |
|
<properties> |
|
<property name="check_translator_comments" value="false" /> |
|
</properties> |
I think the solution is as easy as:
<rule ref="WordPress.WP.I18n">
<exclude name="WordPress.WP.I18n.MissingTranslatorsComment" />
...
WPCS recently deprecated a temporary property called
check_translator_commentsthat is currently being used in the HM-Minimum ruleset.Commit details here: WordPress/WordPress-Coding-Standards@31064cf
Affected code is here:
coding-standards/HM-Minimum/ruleset.xml
Lines 160 to 163 in e8ec095
I think the solution is as easy as: