no-deprecated-attr
非推奨と定義されている属性がある場合に警告します。
このルールはMDN Web docsが示すHTML Living Standardベースの情報を参照します。設定は@markuplint/html-specにあります。
HTML Living Standardが非準拠かつ廃止された機能としてマークしている属性はno-obsolete-attrの担当です。
❌ 間違ったコード例
<img src="path/to" alt="any picture" align="top" />
✅ 正しいコード例
<img src="path/to" alt="any picture" style="vertical-align: center" />
Interface
{
"no-deprecated-attr": boolean
}
Default Severity
warning