id | title |
---|---|
no-inline-styles |
@html-eslint/no-inline-styles |
This rule disallow the use of inline styles.
Examples of incorrect code for this rule:
<div style="color:#ff0a00"></div>
Examples of correct code for this rule:
<div class="some-color"></div>