在 Eclipse 中显示 phpDoc 警告
我使用 Eclipse PDT 和 phpDoc。
我希望 phpDoc 的警告显示在编辑器中,就像其他“验证”工具一样。这将帮助程序员团队创建更好的文档。
有办法做到这一点吗?
谢谢。
I use Eclipse PDT and phpDoc.
I would like the warnings of phpDoc to show up in the editor, just like other "validation" tools. This would help the programmer team to create better documentation.
Is there a way to do that ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个用于强制执行 PHP 编码标准的有用工具,名为 PHP CodeSniffer。
它包括用于强制执行文档块要求的预构建规则。我确信如果提供的规则并不完全符合您的需要,那么扩展您自己的规则将相对容易。
有一个与 Eclipse 的预构建集成,其中包括一些其他工具,例如
我使用过的 PhpSrc 中的 phpunit这些工具在执行编码标准方面取得了良好的效果。
There's a useful tool for enforcing coding standards in PHP called PHP CodeSniffer.
It includes prebuilt rules to enforce docblock requirements. I'm sure if the provided rules aren't exactly what you need it would be relative easy to extend your own rules.
There's a prebuilt integration with Eclipse that includes some other tools like phpunit at PhpSrc
I've used these tools to enforce coding standards with good results.