Disallowed elements
Warns if specified elements appear on a document or an element. Use the selector to specify.
This is a generic rule for searching the disallowed element.
Use permitted-contents
rule if you expect to check conformance according to HTML Standard.
Rule Details
When specified { "disallowed-element": ["hgroup"] }
:
👎 Examples of incorrect code for this rule
<div>
<hgroup><h1>Heading</h1></hgroup>
</div>
👍 Examples of correct code for this rule
<div>
<h1>Heading</h1>
</div>
If specified to rules
, It searches the element from a document.
{
"rules": {
"disallowed-element": ["hgroup"]
}
}
If specified to nodeRules
or childNodeRules
, It searches the element from child elements of the target element.
{
"nodeRules": [
{
"selector": "h1, h2, h3, h4, h5, h6",
"rules": {
"disallowed-element": ["small"]
}
}
]
}
Interface
- Type:
string[]
- Deafult Value:
[]
Default severity
error