我在 VS Code 中使用 PHPCS 和 PHPCBF 进行 WordPress 开发。
(按照https://github.com/tommcfarlin/phpcs-wpcs-vscode中提到的说明)
虽然 PHPCBF 正在按照 WPCS 格式化代码,但我仍然觉得代码看起来非常难看,尤其是当 PHP 文档中存在 Html 标记时。
当我使用 Intelephense 格式化 Php 代码时,代码看起来很舒服,包括正确缩进的 Html 标记。使用 Intelephense 的权衡是代码不再兼容 WPCS。有一个选项可以将 WordPress 作为存根包含在 Intelephense 中,但这仅用于包含 WordPress 特定功能,与格式无关。
使用 Intelephene 进行格式化时面临的一些问题是:
- 打开后和右括号之前没有空格,(phpcs)
- 文件注释前不能有空行(phpcs)
<?php
// this is a blank line inserted by Intelephense which is causing error no.2 provided in summary above
/**
* This is a sample file
*
* @package something.
* something something
* something something
*/
get_header();
if (have_posts()) {
while (have_posts()) {
// No space is inserted by Intelephense After opening and before Closing parenthesis which is causing error no.1 provided in summary above
the_post(); ?>
<h2>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a>
</h2>
<?php the_content(); ?>
<hr>
<?php
}
}
get_footer();
?>