Skip to main content

no-deprecated-tag

no-deprecated-tag

If set, disallow the use of obsolete and deprecated html tags

Given:

  {
"no-deprecated-tag": "error"
}

The following patterns are considered violations:

<center>Centered html</center>
<dir><li>Folder</li></dir>
<big>Big text</big>

The following patterns are not considered violations:

<div>A simple div</div>
<span>A simple span</span>
<strong>A simple strong</strong>
<button>A simple button</button>