Skip to content

Commit 316230a

Browse files
authored
Update React compiler and install eslint plugin (#7428)
1 parent 855ce23 commit 316230a

File tree

6 files changed

+356
-119
lines changed

6 files changed

+356
-119
lines changed

.eslintrc

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
"root": true,
33
"extends": "next/core-web-vitals",
44
"parser": "@typescript-eslint/parser",
5-
"plugins": ["@typescript-eslint"],
5+
"plugins": ["@typescript-eslint", "eslint-plugin-react-compiler"],
66
"rules": {
77
"no-unused-vars": "off",
8-
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_" }],
8+
"@typescript-eslint/no-unused-vars": ["error", {"varsIgnorePattern": "^_"}],
99
"react-hooks/exhaustive-deps": "error",
10-
"react/no-unknown-property": ["error", { "ignore": ["meta"] }]
10+
"react/no-unknown-property": ["error", {"ignore": ["meta"]}],
11+
"react-compiler/react-compiler": "error"
1112
},
1213
"env": {
1314
"node": true,

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"@docsearch/react": "^3.6.1",
2929
"@headlessui/react": "^1.7.0",
3030
"@radix-ui/react-context-menu": "^2.1.5",
31-
"babel-plugin-react-compiler": "0.0.0-experimental-696af53-20240625",
3231
"body-scroll-lock": "^3.1.3",
3332
"classnames": "^2.2.6",
3433
"date-fns": "^2.16.1",
@@ -62,13 +61,15 @@
6261
"asyncro": "^3.0.0",
6362
"autoprefixer": "^10.4.2",
6463
"babel-eslint": "10.x",
64+
"babel-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
6565
"eslint": "7.x",
6666
"eslint-config-next": "12.0.3",
6767
"eslint-config-react-app": "^5.2.1",
6868
"eslint-plugin-flowtype": "4.x",
6969
"eslint-plugin-import": "2.x",
7070
"eslint-plugin-jsx-a11y": "6.x",
7171
"eslint-plugin-react": "7.x",
72+
"eslint-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
7273
"eslint-plugin-react-hooks": "^0.0.0-experimental-fabef7a6b-20221215",
7374
"fs-extra": "^9.0.1",
7475
"globby": "^11.0.1",
@@ -109,5 +110,6 @@
109110
"lint-staged": {
110111
"*.{js,ts,jsx,tsx,css}": "yarn prettier",
111112
"src/**/*.md": "yarn fix-headings"
112-
}
113+
},
114+
"packageManager": "[email protected]"
113115
}

src/components/Layout/Sidebar/SidebarRouteTree.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ function CollapseWrapper({
3838
// Disable pointer events while animating.
3939
const isExpandedRef = useRef(isExpanded);
4040
if (typeof window !== 'undefined') {
41+
// eslint-disable-next-line react-compiler/react-compiler
4142
// eslint-disable-next-line react-hooks/rules-of-hooks
4243
useLayoutEffect(() => {
4344
const wasExpanded = isExpandedRef.current;

src/components/MDX/Sandpack/CustomPreset.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export const CustomPreset = memo(function CustomPreset({
2828
const {activeFile} = sandpack;
2929
const lineCountRef = useRef<{[key: string]: number}>({});
3030
if (!lineCountRef.current[activeFile]) {
31+
// eslint-disable-next-line react-compiler/react-compiler
3132
lineCountRef.current[activeFile] = code.split('\n').length;
3233
}
3334
const lineCount = lineCountRef.current[activeFile];

src/components/MDX/Sandpack/Preview.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* Copyright (c) Facebook, Inc. and its affiliates.
33
*/
44

5+
// eslint-disable-next-line react-compiler/react-compiler
56
/* eslint-disable react-hooks/exhaustive-deps */
67
import {useRef, useState, useEffect, useMemo, useId} from 'react';
78
import {useSandpack, SandpackStack} from '@codesandbox/sandpack-react/unstyled';

0 commit comments

Comments
 (0)