我想删除它,因为我在我的项目中不需要它。
<rule ref="Squiz.Commenting.FileComment">
<properties>
<property name="subpackage" value="false"/>
</properties>
</rule>
见到你
答案 0 :(得分:0)
在ruleset.xml文件中排除该特定错误消息的方法是使用:
<exclude name="Squiz.Commenting.FileComment.MissingSubpackageTag" />
使用-s
命令行参数确定特定错误消息的代码。你会看到这样的事情:
Missing @subpackage tag in file comment
(Squiz.Commenting.FileComment.MissingSubpackageTag)
如果你想排除整个嗅探,你可以使用:
<exclude name="Squiz.Commenting.FileComment" />
您可以在规则集文件中执行许多其他操作。有关更多示例,请参阅文档:https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml