@html-eslint/no-target-blank
target='_blank'
Disallow usage of unsafe Rule Details
...
Examples of incorrect code for this rule:
<a target='_blank' href="http://example.com/"></a>
Examples of correct code for this rule:
<a target="_blank" href="relative/path/"></a>
<a target="_blank" rel="noreferrer" href="http://example.com/"></a>