Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 html 文件中的 controle 结构中要求替代语法,否则,如果在任何指令中都没有遵守替代语法规则,则会引发错误或警告。
以下是应建立的替代语法示例:
<?php if (true === $var) : ?> <h3>Hello world</h3> <?php else : ?> <h3>Hello</h3> <?php endif; ?>
是否有处理此类要求的 phpcs 嗅探器?如果没有,我们如何进行自定义嗅探来检查 html 文件中的替代语法?