You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/website/content/docs/rules/overview.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ Linter rules can have false positives, false negatives, and some rules are depen
27
27
|[`avoid-shorthand-boolean`](./avoid-shorthand-boolean)| 0️⃣ |`🔧`| Enforces the use of explicit boolean values for boolean attributes. ||
28
28
|[`avoid-shorthand-fragment`](./avoid-shorthand-fragment)| 0️⃣ || Enforces the use of explicit `<Fragment>` components instead of the shorthand `<>` or `</>` syntax. ||
|[`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.||
31
31
|[`no-children-count`](./no-children-count)| 1️⃣ || Prevents using `Children.count`. ||
32
32
|[`no-children-for-each`](./no-children-for-each)| 1️⃣ || Prevents using `Children.forEach`. ||
33
33
|[`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
92
92
|[`no-render`](./dom-no-render)| 2️⃣ |`🔄`| Replaces usages of `ReactDom.render()` with `createRoot(node).render()`. | >=18.0.0 |
93
93
|[`no-render-return-value`](./dom-no-render-return-value)| 2️⃣ || Prevents using the return value of `ReactDOM.render`. ||
94
94
|[`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.||
96
96
|[`no-unsafe-iframe-sandbox`](./dom-no-unsafe-iframe-sandbox)| 1️⃣ || Enforces `sandbox` attribute for `iframe` elements is not set to unsafe combinations. ||
97
97
|[`no-unsafe-target-blank`](./dom-no-unsafe-target-blank)| 1️⃣ || Prevents using `target="_blank"` without `rel="noreferrer noopener"`. ||
98
98
|[`no-use-form-state`](./dom-no-use-form-state)| 2️⃣ |`🔄`| Replaces the usages of `useFormState` with `useActionState`. | >=19.0.0 |
0 commit comments