html-eslint icon indicating copy to clipboard operation
html-eslint copied to clipboard

[Bug] `element-newline` incorrectly reports on siblings

Open RobertAKARobin opened this issue 6 months ago • 2 comments

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"]
        }
      ]
    }

RobertAKARobin avatar Aug 06 '24 16:08 RobertAKARobin