invalid-attr
属性が仕様上(あるいは独自に指定したルール上)、存在しない属性であったり、無効な型の値だった場合に警告をします。
HTML Living Standardに準拠します。@markuplint/html-spec
に設定値を持っています。
❌ 間違ったコード例
<div unexist-attr>
<button tabindex="non-integer">The Button</button>
<a href="/" referrerpolicy="invalid-value">The Anchor</a>
</div>
✅ 正しいコード例
<div>
<button tabindex="0">The Button</button>
<a href="/" referrerpolicy="no-referrer">The Anchor</a>
</div>
注記
このルールは条件によってはスプレッド属性をもつ要素は評価しません。例えば、href