tag-bans
The value of this option is a list of strings, each of which is a tag name. Tags with any of the given names are disallowed.
Given :
"tag-bans": [
"error",
["div", "center"]
]
The following patterns are considered violations:
<div>Hello & world</div>
<center>Hello & world</center>
The following patterns are considered not violations:
<p>Hello & world</p>