eslint-plugin-react-rsc 5.3.4-beta.0 → 5.3.4-next.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.
- package/dist/index.js +16 -1
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -34,7 +34,7 @@ const rules$4 = { "react-rsc/function-definition": "off" };
|
|
|
34
34
|
//#endregion
|
|
35
35
|
//#region package.json
|
|
36
36
|
var name$4 = "eslint-plugin-react-rsc";
|
|
37
|
-
var version = "5.3.4-
|
|
37
|
+
var version = "5.3.4-next.1";
|
|
38
38
|
|
|
39
39
|
//#endregion
|
|
40
40
|
//#region src/utils/create-rule.ts
|
|
@@ -278,10 +278,25 @@ const settings = { ...settings$1 };
|
|
|
278
278
|
const finalPlugin = {
|
|
279
279
|
...plugin,
|
|
280
280
|
configs: {
|
|
281
|
+
/**
|
|
282
|
+
* Disable experimental rules that might be subject to change in the future
|
|
283
|
+
*/
|
|
281
284
|
["disable-experimental"]: disable_experimental_exports,
|
|
285
|
+
/**
|
|
286
|
+
* Enforce rules that are recommended by ESLint React for general purpose React + React DOM projects
|
|
287
|
+
*/
|
|
282
288
|
["recommended"]: recommended_exports,
|
|
289
|
+
/**
|
|
290
|
+
* Same as the `recommended` preset but disables rules that can be enforced by TypeScript
|
|
291
|
+
*/
|
|
283
292
|
["recommended-typescript"]: recommended_typescript_exports,
|
|
293
|
+
/**
|
|
294
|
+
* More strict version of the `recommended` preset
|
|
295
|
+
*/
|
|
284
296
|
["strict"]: strict_exports,
|
|
297
|
+
/**
|
|
298
|
+
* Same as the `strict` preset but disables rules that can be enforced by TypeScript
|
|
299
|
+
*/
|
|
285
300
|
["strict-typescript"]: strict_typescript_exports
|
|
286
301
|
}
|
|
287
302
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-react-rsc",
|
|
3
|
-
"version": "5.3.4-
|
|
3
|
+
"version": "5.3.4-next.1",
|
|
4
4
|
"description": "ESLint React's ESLint plugin for RSC related rules.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -42,17 +42,17 @@
|
|
|
42
42
|
"@typescript-eslint/types": "^8.59.0",
|
|
43
43
|
"@typescript-eslint/utils": "^8.59.0",
|
|
44
44
|
"ts-pattern": "^5.9.0",
|
|
45
|
-
"@eslint-react/ast": "5.3.4-
|
|
46
|
-
"@eslint-react/core": "5.3.4-
|
|
47
|
-
"@eslint-react/
|
|
48
|
-
"@eslint-react/
|
|
49
|
-
"@eslint-react/
|
|
45
|
+
"@eslint-react/ast": "5.3.4-next.1",
|
|
46
|
+
"@eslint-react/core": "5.3.4-next.1",
|
|
47
|
+
"@eslint-react/eslint": "5.3.4-next.1",
|
|
48
|
+
"@eslint-react/shared": "5.3.4-next.1",
|
|
49
|
+
"@eslint-react/var": "5.3.4-next.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/react": "^19.2.14",
|
|
53
53
|
"@types/react-dom": "^19.2.3",
|
|
54
54
|
"eslint": "^10.2.1",
|
|
55
|
-
"tsdown": "^0.21.
|
|
55
|
+
"tsdown": "^0.21.10",
|
|
56
56
|
"@local/configs": "0.0.0",
|
|
57
57
|
"@local/eff": "3.0.0-beta.72"
|
|
58
58
|
},
|