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/roadmap.md
+20-2Lines changed: 20 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,20 @@
2
2
title: Roadmap
3
3
---
4
4
5
+
## Milestone 4.0 (TBD)
6
+
7
+
### System Requirements
8
+
9
+
Minimum supported versions:
10
+
11
+
-[ ] Node.js: 28.x.x
12
+
-[x] ESLint: 9.36.0
13
+
-[x] TypeScript: 5.9.2
14
+
15
+
### Removed Rules
16
+
17
+
-[ ]`react-hooks-extra/no-direct-set-state-in-use-effect` - Replaced by `react-x/set-state-in-effect` (TBD)
18
+
5
19
## Milestone 3.0 (TBD)
6
20
7
21
### System Requirements
@@ -18,13 +32,17 @@ Minimum supported versions:
18
32
19
33
### New Rules
20
34
21
-
-[ ]`react-x/set-state-in-effect` - Validates against calling `setState` synchronously in an effect, which can lead to re-renders that degrade performance\
35
+
-[ ]`react-x/set-state-in-effect` - Validates against calling `setState` synchronously in an effect, which can lead to re-renders that degrade performance (TBD)\
22
36
(lightweight, performant version of [set-state-in-effect](https://react.dev/reference/eslint-plugin-react-hooks/lints/set-state-in-effect) that doesn't require React Compiler integration)
23
-
-[ ]`react-x/set-state-in-render` - Validates against setting state during render, which can trigger additional renders and potential infinite render loops\
37
+
-[ ]`react-x/set-state-in-render` - Validates against setting state during render, which can trigger additional renders and potential infinite render loops (TBD)\
24
38
(lightweight, performant version of [set-state-in-render](https://react.dev/reference/eslint-plugin-react-hooks/lints/set-state-in-render) that doesn't require React Compiler integration)
25
39
-[ ]`react-x/function-component-definition` - Enforces the definition of function components ([Rel1cx/eslint-react#739](https://github.com/Rel1cx/eslint-react/issues/739))
26
40
-[ ]`react-dom/no-unmount-component-at-node` - Replaces usages of `ReactDom.unmountComponentAtNode()` with `root.unmount()` (React 19)
27
41
42
+
### Deprecated Rules
43
+
44
+
-[ ]`react-hooks-extra/no-direct-set-state-in-use-effect` - Replaced by `react-x/set-state-in-effect` (TBD)
0 commit comments