1234567891011121314151617 |
- {
- "id": "avoid-inline-spacing",
- "evaluate": "avoid-inline-spacing-evaluate",
- "options": {
- "cssProperties": ["line-height", "letter-spacing", "word-spacing"]
- },
- "metadata": {
- "impact": "serious",
- "messages": {
- "pass": "No inline styles with '!important' that affect text spacing has been specified",
- "fail": {
- "singular": "Remove '!important' from inline style ${data.values}, as overriding this is not supported by most browsers",
- "plural": "Remove '!important' from inline styles ${data.values}, as overriding this is not supported by most browsers"
- }
- }
- }
- }
|