disallow inline style (no-inline-style
)
Inline style is a sign of unstructured CSS. Use class or ID with a separate stylesheet.
Rule details
Examples of incorrect code for this rule:
<p style="color: red"></p>
Examples of correct code for this rule:
<p class="error"></p>