diff --git a/docs/rules/no-array-index-key.md b/docs/rules/no-array-index-key.md index 86eb2ac800..cb93560f6d 100644 --- a/docs/rules/no-array-index-key.md +++ b/docs/rules/no-array-index-key.md @@ -95,3 +95,7 @@ things.reduceRight((collection, thing) => ( collection.concat() ), []); ``` + +## When Not To Use It + +If there is nothing unique about the items, for example [you are breaking an array down in to chunks](https://github.com/yannickcr/eslint-plugin-react/issues/1123), then you may want to disable this rule with an override.