更新到最新的wpcs版本后,我的文件中出现了精确对齐警告。对我班级中的属性的评论正在发生。例如
<?php
/**
* FIle that holds the test class
*
* @since 1.0.0
* @package test
*/
namespace Namespace\Admin;
/**
* Test class
*
* @since 1.0.0
*/
class Test {
/**
* Global theme name
*
* @var string
*
* @since 1.0.0
*/
protected $theme_name;
}
我在规则集中使用 2 个空格而不是 4 个空格和空格而不是制表符。
<!-- Tabs should represent 2 spaces. -->
<arg name="tab-width" value="2"/>
<!-- Set the default indent value and force spaces instead of tabs -->
<rule ref="WordPress">
<exclude name="Generic.WhiteSpace.DisallowSpaceIndent" />
</rule>
<rule ref="Generic.WhiteSpace.ScopeIndent">
<properties>
<property name="indent" value="2"/>
<property name="tabIndent" value="false"/>
</properties>
</rule>
<rule ref="Generic.WhiteSpace.DisallowTabIndent" />
<rule ref="PEAR.Functions.FunctionCallSignature">
<properties>
<property name="indent" value="2"/>
</properties>
</rule>
我尝试添加T_DOC_COMMENT_WHITESPACE
到ignoreAlignmentTokens
<!-- Precision alignment sniff -->
<rule ref="WordPress.WhiteSpace.PrecisionAlignment">
<properties>
<property name="ignoreAlignmentTokens" type="array" value="T_COMMENT,T_INLINE_HTML,T_DOC_COMMENT_WHITESPACE"/>
</properties>
</rule>
但是我仍然收到有关我的文档块和我的财产上的 2 个空格的精确对齐的警告。
这可以静音,还是我错过了什么?