@@ -2,6 +2,10 @@ import type { OxlintConfig } from "oxlint";
22import { defineConfig } from "oxlint" ;
33
44const disabledRules = [
5+ // Temporarily disabled
6+ "eslint/prefer-named-capture-group" ,
7+ "unicorn/import-style" ,
8+
59 "eslint/arrow-body-style" ,
610 "eslint/capitalized-comments" ,
711 "eslint/class-methods-use-this" ,
@@ -41,6 +45,7 @@ const disabledRules = [
4145 "import/no-nodejs-modules" ,
4246 "import/no-relative-parent-imports" ,
4347 "import/prefer-default-export" ,
48+ "node/callback-return" ,
4449 "oxc/no-async-await" ,
4550 "oxc/no-barrel-file" ,
4651 "oxc/no-map-spread" ,
@@ -52,6 +57,7 @@ const disabledRules = [
5257 "react-perf/jsx-no-new-function-as-prop" ,
5358 "react/forbid-component-props" ,
5459 "react/jsx-max-depth" ,
60+ "react/jsx-no-literals" ,
5561 "react/no-multi-comp" ,
5662 "react/only-export-components" ,
5763 "react/react-in-jsx-scope" ,
@@ -71,6 +77,7 @@ const disabledRules = [
7177 "unicorn/prefer-event-target" ,
7278 "unicorn/prefer-module" ,
7379 "unicorn/prefer-query-selector" ,
80+ "unicorn/prefer-single-call" ,
7481 "unicorn/prefer-spread" ,
7582 "unicorn/prefer-ternary" ,
7683 "unicorn/require-post-message-target-origin" ,
0 commit comments