html-eslint
html-eslint copied to clipboard
[Bug] `element-newline` incorrectly reports on siblings
For example, this test fails. It should pass because b
and c
are skipped:
{
code: `<a>
<b></b><c></c>
</a>`,
options: [
{
skip: ["b", "c"]
}
]
}