如何为php代码嗅探器调用自定义ruleset.xml

发布于 2024-09-29 00:22:06 字数 499 浏览 7 评论 0原文

我正在尝试为 php 代码嗅探器编写自定义ruleset.xml,但从命令行调用它而不将其放入默认文件夹似乎不起作用。

因为文档似乎另有说明我想问我是否在这里做错了什么

:~/$ phpcs --standard=/home/edo/custom_ruleset.xml source/
===>
ERROR: the "/home/edo/custom_ruleset.xml" coding standard is not installed.
The installed coding standards are PEAR, PHPCS, Zend, Squiz and MySource

如果这不起作用:关于如何将您自己的编码标准与源代码一起发布的任何建议?谢谢

I'm trying to write an custom ruleset.xml for php code sniffer but calling it from the commandline without putting it in the default folder doesn't seem to work.

Since the documentations seems to state otherwise i'd like to ask if i'm doing something wrong here

:~/$ phpcs --standard=/home/edo/custom_ruleset.xml source/
===>
ERROR: the "/home/edo/custom_ruleset.xml" coding standard is not installed.
The installed coding standards are PEAR, PHPCS, Zend, Squiz and MySource

If that doesn't work: Any suggestions on how to ship your own coding standard with your source ? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满栀 2024-10-06 00:22:06

您至少需要 版本 1.3.0a1 的代码嗅探器使用带注释的规则集:

  • 所有 CodingStandard.php 文件均已替换为ruleset.xml 文件
    自定义标准需要转换为这种新格式才能继续工作
  • 您可以使用 --standard 命令行参数指定您自己的自定义ruleset.xml 文件的路径
    例如,phpcs --standard=/path/to/my/ruleset.xml

在此之前,您必须复制您的规则集,如本教程中所述

You need at least version 1.3.0a1 of Code Sniffer to use annotated rulesets:

  • All CodingStandard.php files have been replaced by ruleset.xml files
    Custom standards will need to be converted over to this new format to continue working
  • You can specify a path to your own custom ruleset.xml file by using the --standard command line arg
    e.g., phpcs --standard=/path/to/my/ruleset.xml

Before that, you had to copy your ruleset, as explained in this tutorial.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文