oxlint-react-compiler-experimental 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1402,12 +1402,18 @@
|
|
|
1402
1402
|
"radix": {
|
|
1403
1403
|
"$ref": "#/definitions/DummyRule"
|
|
1404
1404
|
},
|
|
1405
|
+
"react-compiler/automatic-effect-dependencies": {
|
|
1406
|
+
"$ref": "#/definitions/DummyRule"
|
|
1407
|
+
},
|
|
1405
1408
|
"react-compiler/capitalized-calls": {
|
|
1406
1409
|
"$ref": "#/definitions/DummyRule"
|
|
1407
1410
|
},
|
|
1408
1411
|
"react-compiler/compiler-config": {
|
|
1409
1412
|
"$ref": "#/definitions/DummyRule"
|
|
1410
1413
|
},
|
|
1414
|
+
"react-compiler/component-hook-factories": {
|
|
1415
|
+
"$ref": "#/definitions/DummyRule"
|
|
1416
|
+
},
|
|
1411
1417
|
"react-compiler/error-boundaries": {
|
|
1412
1418
|
"$ref": "#/definitions/DummyRule"
|
|
1413
1419
|
},
|
|
@@ -1417,6 +1423,9 @@
|
|
|
1417
1423
|
"react-compiler/fbt": {
|
|
1418
1424
|
"$ref": "#/definitions/DummyRule"
|
|
1419
1425
|
},
|
|
1426
|
+
"react-compiler/fire": {
|
|
1427
|
+
"$ref": "#/definitions/DummyRule"
|
|
1428
|
+
},
|
|
1420
1429
|
"react-compiler/gating": {
|
|
1421
1430
|
"$ref": "#/definitions/DummyRule"
|
|
1422
1431
|
},
|
|
@@ -3283,4 +3292,4 @@
|
|
|
3283
3292
|
}
|
|
3284
3293
|
},
|
|
3285
3294
|
"markdownDescription": "Oxlint Configuration File\n\nThis configuration is aligned with ESLint v8's configuration schema (`eslintrc.json`).\n\nUsage: `oxlint -c oxlintrc.json`\n\nExample\n\n`.oxlintrc.json`\n\n```json\n{\n\"$schema\": \"./node_modules/oxlint/configuration_schema.json\",\n\"plugins\": [\"import\", \"typescript\", \"unicorn\"],\n\"env\": {\n\"browser\": true\n},\n\"globals\": {\n\"foo\": \"readonly\"\n},\n\"settings\": {\n\"react\": {\n\"version\": \"18.2.0\"\n},\n\"custom\": { \"option\": true }\n},\n\"rules\": {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\n\"overrides\": [\n{\n\"files\": [\"*.test.ts\", \"*.spec.ts\"],\n\"rules\": {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n}\n```\n\n`oxlint.config.ts`\n\n```ts\nimport { defineConfig } from \"oxlint\";\n\nexport default defineConfig({\nplugins: [\"import\", \"typescript\", \"unicorn\"],\nenv: {\n\"browser\": true\n},\nglobals: {\n\"foo\": \"readonly\"\n},\nsettings: {\nreact: {\nversion: \"18.2.0\"\n},\ncustom: { option: true }\n},\nrules: {\n\"eqeqeq\": \"warn\",\n\"import/no-cycle\": \"error\",\n\"react/self-closing-comp\": [\"error\", { \"html\": false }]\n},\noverrides: [\n{\nfiles: [\"*.test.ts\", \"*.spec.ts\"],\nrules: {\n\"@typescript-eslint/no-explicit-any\": \"off\"\n}\n}\n]\n});\n```"
|
|
3286
|
-
}
|
|
3295
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oxlint-react-compiler-experimental",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Experimental oxlint build with React Compiler rules. Multi-platform: darwin-arm64, linux-arm64, linux-x64, win32-arm64, win32-x64.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|