diff options
author | dan <dan.abramov@gmail.com> | 2024-05-22 19:04:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 19:04:28 +0100 |
commit | 0c2fb13516fa2a2e468f28651499637ba5c90a6c (patch) | |
tree | f3deb8cb40c7670b992c3d85df60f979070e2325 /.eslintrc.js | |
parent | bf8db6172fafcbc791c94ea8e8b797490306525c (diff) | |
download | voidsky-0c2fb13516fa2a2e468f28651499637ba5c90a6c.tar.zst |
[Temporary] Disable React Compiler lint rules (#4172)
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 1d0b30a59..541b3d615 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -68,7 +68,8 @@ module.exports = { }, ], 'simple-import-sort/exports': 'warn', - 'react-compiler/react-compiler': 'error', + // TODO: Reenable when we figure out why it gets stuck on CI. + // 'react-compiler/react-compiler': 'error', }, ignorePatterns: [ '**/__mocks__/*.ts', |