We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56a4b57 commit cff595eCopy full SHA for cff595e
docs/rules/no-array-index-key.md
@@ -35,6 +35,10 @@ things.every((thing, index) => {
35
otherThings.push(<Hello key={index} />);
36
});
37
38
+things.find((thing, index) => {
39
+ otherThings.push(<Hello key={index} />);
40
+});
41
+
42
things.findIndex((thing, index) => {
43
44
@@ -75,6 +79,10 @@ things.every((thing) => {
75
79
otherThings.push(<Hello key={thing.id} />);
76
80
77
81
82
+things.find((thing) => {
83
+ otherThings.push(<Hello key={thing.id} />);
84
85
78
86
things.findIndex((thing) => {
87
88
0 commit comments