Skip to content

Commit 921186f

Browse files
committed
docs: minor fixes
1 parent 5e0ddb0 commit 921186f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/website/content/docs/rules/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Linter rules can have false positives, false negatives, and some rules are depen
2727
| [`avoid-shorthand-boolean`](./avoid-shorthand-boolean) | 0️⃣ | `🔧` | Enforces the use of explicit boolean values for boolean attributes. | |
2828
| [`avoid-shorthand-fragment`](./avoid-shorthand-fragment) | 0️⃣ | | Enforces the use of explicit `<Fragment>` components instead of the shorthand `<>` or `</>` syntax. | |
2929
| [`no-access-state-in-setstate`](./no-access-state-in-setstate) | 2️⃣ | | Prevents accessing `this.state` inside `setState` calls. | |
30-
| [`no-array-index-key`](./no-array-index-key) | 1️⃣ | | Prevents using an item's index in the array as its key | |
30+
| [`no-array-index-key`](./no-array-index-key) | 1️⃣ | | Prevents using an item's index in the array as its key. | |
3131
| [`no-children-count`](./no-children-count) | 1️⃣ | | Prevents using `Children.count`. | |
3232
| [`no-children-for-each`](./no-children-for-each) | 1️⃣ | | Prevents using `Children.forEach`. | |
3333
| [`no-children-map`](./no-children-map) | 1️⃣ | | Prevents using `Children.map`. | |
@@ -92,7 +92,7 @@ Linter rules can have false positives, false negatives, and some rules are depen
9292
| [`no-render`](./dom-no-render) | 2️⃣ | `🔄` | Replaces usages of `ReactDom.render()` with `createRoot(node).render()`. | >=18.0.0 |
9393
| [`no-render-return-value`](./dom-no-render-return-value) | 2️⃣ | | Prevents using the return value of `ReactDOM.render`. | |
9494
| [`no-script-url`](./dom-no-script-url) | 1️⃣ | | Prevents using `javascript:` URLs as the value of attributes. | |
95-
| [`no-unknown-property`](./dom-no-unknown-property) | 1️⃣ | `🔧` `⚙️` | Prevents using unknown `DOM` property | |
95+
| [`no-unknown-property`](./dom-no-unknown-property) | 1️⃣ | `🔧` `⚙️` | Prevents using unknown `DOM` property. | |
9696
| [`no-unsafe-iframe-sandbox`](./dom-no-unsafe-iframe-sandbox) | 1️⃣ | | Enforces `sandbox` attribute for `iframe` elements is not set to unsafe combinations. | |
9797
| [`no-unsafe-target-blank`](./dom-no-unsafe-target-blank) | 1️⃣ | | Prevents using `target="_blank"` without `rel="noreferrer noopener"`. | |
9898
| [`no-use-form-state`](./dom-no-use-form-state) | 2️⃣ | `🔄` | Replaces the usages of `useFormState` with `useActionState`. | >=19.0.0 |

0 commit comments

Comments
 (0)