Rules
no-missing-key
Full Name in eslint-plugin-react-x
Full Name in @eslint-react/eslint-plugin
Features
๐
Presets
corerecommendedrecommended-typescriptrecommended-type-checked
What it does
Prevents missing key on items in list rendering.
React needs keys to identify items in the list. If you donโt specify a key, React will use the array index as a key, which often leads to subtle and confusing bugs.
Examples
Failing
Passing
Implementation
Further Reading
See Also
no-duplicate-key
Prevents duplicatekeyon elements in the same array or a list ofchildren.no-implicit-key
Preventskeyfrom not being explicitly specified (e.g. spreadingkeyfrom objects).no-array-index-key
Warns when an arrayindexis used as akeyprop.