Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 759 Bytes

no-invalid-html-attribute.md

File metadata and controls

17 lines (11 loc) · 759 Bytes

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

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.