我正在寻找一个CLI工具,npm包或gulp / grunt插件来验证HTML文件中的正确缩进。
如果文件使用正确的空格或制表符设置但预期的空格数错误,我尝试过的所有选项都不会报告错误。
例如,以下缩进不会被报告为错误:
<button>
<span class="someting">Lorem ipsum</span>
<span>Lorem ipsum</span>
<span>Consectetuer</span>
</button>
&#13;
具有讽刺意味的是,Stack Overflow编辑器检测到错误的缩进,因此我被迫使用了一个代码段。
我已经尝试过htmllint,lintspaces和htmlhint。