website/src/pages/lint/rules/useIframeTitle.md
This rule is recommended by Rome.
Enforces the usage of the attribute title for the element iframe.
<iframe />
<iframe></iframe>
<iframe title="" />
<iframe title={""} />
<iframe title={undefined} />
<iframe title={false} />
<iframe title={true} />
<iframe title={42} />
<>
<iframe title="This is a unique title" />
<iframe title={uniqueTitle} />
<iframe {...props} />
</>