Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 947 Bytes

no-invalid-html-attribute.md

File metadata and controls

22 lines (13 loc) · 947 Bytes

Disallow usage of invalid attributes (react/no-invalid-html-attribute)

💡 This rule is manually fixable by editor suggestions.

Some HTML elements have a specific set of valid values for some attributes. For instance the elements: a, area, link, or form all have an attribute called rel. There is a fixed list of values that have any meaning for this attribute on these tags (see MDN). To help with minimizing confusion while reading code, only the appropriate values should be on each attribute.

Rule Details

This rule aims to remove invalid attribute values.

Rule Options

The options is a list of attributes to check. Defaults to ["rel"].

When Not To Use It

When you don't want to enforce attribute value correctness.