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
|[`avoid-shorthand-boolean`](./avoid-shorthand-boolean)| 0️⃣ |`🔍``🔧`| Enforces the use of explicit boolean values for boolean attributes. ||
22
22
|[`avoid-shorthand-fragment`](./avoid-shorthand-fragment)| 0️⃣ |`🔍`| Enforces the use of explicit `<Fragment>` components instead of the shorthand `<>` or `</>` syntax. ||
23
-
|[`no-useless-forward-ref`](./no-useless-forward-ref)| 1️⃣ |`🔍`| Requires that components wrapped with `forwardRef` must have a `ref` parameter. ||
|[`no-void-elements-with-children`](./dom-no-void-elements-with-children)| 2️⃣ |`🔍`| Prevents using `children` in void DOM elements. |
79
-
|[`no-dangerously-set-innerhtml-with-children`](./dom-no-dangerously-set-innerhtml-with-children)| 2️⃣ |`🔍`| Prevents DOM elements using `dangerouslySetInnerHTML` and `children` at the same time. |
80
78
|[`no-dangerously-set-innerhtml`](./dom-no-dangerously-set-innerhtml)| 1️⃣ |`🔍`| Prevents DOM elements using `dangerouslySetInnerHTML`. |
79
+
|[`no-dangerously-set-innerhtml-with-children`](./dom-no-dangerously-set-innerhtml-with-children)| 2️⃣ |`🔍`| Prevents DOM elements using `dangerouslySetInnerHTML` and `children` at the same time. |
81
80
|[`no-find-dom-node`](./dom-no-find-dom-node)| 2️⃣ |`🔍`| Prevents using `findDOMNode`. |
82
-
|[`no-flush-sync`](./dom-no-flush-sync)|1️⃣|`🔍`| Prevents using `flushSync`. |
81
+
|[`no-flush-sync`](./dom-no-flush-sync)|2️⃣|`🔍`| Prevents using `flushSync`. |
|[`no-namespace`](./dom-no-namespace)| 2️⃣ |`🔍`| Enforces the absence of a `namespace` in React elements. |
86
85
|[`no-render-return-value`](./dom-no-render-return-value)| 2️⃣ |`🔍`| Prevents using the return value of `ReactDOM.render`. |
87
86
|[`no-script-url`](./dom-no-script-url)| 1️⃣ |`🔍`| Prevents using `javascript:` URLs as the value of attributes. |
88
-
|[`no-unknown-property`](./dom-no-unknown-property)|0️⃣|`🔍``🔧``⚙️`| Prevents using unknown `DOM` property |
87
+
|[`no-unknown-property`](./dom-no-unknown-property)|1️⃣|`🔍``🔧``⚙️`| Prevents using unknown `DOM` property |
89
88
|[`no-unsafe-iframe-sandbox`](./dom-no-unsafe-iframe-sandbox)| 1️⃣ |`🔍`| Enforces `sandbox` attribute for `iframe` elements is not set to unsafe combinations. |
90
89
|[`no-unsafe-target-blank`](./dom-no-unsafe-target-blank)| 1️⃣ |`🔍`| Prevents using `target="_blank"` without `rel="noreferrer noopener"`. |
90
+
|[`no-void-elements-with-children`](./dom-no-void-elements-with-children)| 2️⃣ |`🔍`| Prevents using `children` in void DOM elements. |
0 commit comments