Skip to content

Commit 02a2b17

Browse files
committed
Merge branch '2.0.0-beta' into 2.0.0-next
2 parents 3299ea5 + dc2545b commit 02a2b17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ This section contains rules that are not part of the official `eslint-plugin-rea
134134

135135
| Rule || 🌟 | Description |
136136
|:-----------------------------------------------------------------------------------------------------|:----|:----:|:-------------------------------------------------------------------------------|
137-
| [`no-direct-set-state-in-use-effect`](./hooks-extra-no-direct-set-state-in-use-effect) | 1️⃣ | | Disallow direct calls to the `set` function of `useState` in `useEffect` |
137+
| [`no-direct-set-state-in-use-effect`](./hooks-extra-no-direct-set-state-in-use-effect) | 1️⃣ | `🧪` | Disallow direct calls to the `set` function of `useState` in `useEffect` |
138138
| [`no-direct-set-state-in-use-layout-effect`](./hooks-extra-no-direct-set-state-in-use-layout-effect) | 0️⃣ | `🧪` | Disallow direct calls to the `set` function of `useState` in `useLayoutEffect` |
139139

140140
## Naming Convention Rules

packages/plugins/eslint-plugin-react-x/src/rules/no-forbidden-props.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ react-x/no-forbidden-props
1616

1717
**Features**
1818

19-
`🔧`
19+
`🔧` `🧪`
2020

2121
## Description
2222

packages/plugins/eslint-plugin-react-x/src/rules/no-forbidden-props.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { createRule } from "../utils";
77

88
export const RULE_NAME = "no-forbidden-props";
99

10-
export const RULE_FEATURES = ["CFG"] as const satisfies RuleFeature[];
10+
export const RULE_FEATURES = ["CFG", "EXP"] as const satisfies RuleFeature[];
1111

1212
export type MessageID = CamelCase<typeof RULE_NAME>;
1313

0 commit comments

Comments
 (0)