eslint-plugin-react-x 5.18.9 → 5.18.10
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 +5 -5
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -145,7 +145,7 @@ const rules$6 = {
|
|
|
145
145
|
//#endregion
|
|
146
146
|
//#region package.json
|
|
147
147
|
var name$6 = "eslint-plugin-react-x";
|
|
148
|
-
var version = "5.18.
|
|
148
|
+
var version = "5.18.10";
|
|
149
149
|
|
|
150
150
|
//#endregion
|
|
151
151
|
//#region src/utils/create-rule.ts
|
|
@@ -8594,19 +8594,19 @@ const finalPlugin = {
|
|
|
8594
8594
|
/**
|
|
8595
8595
|
* Disable rules in `eslint-plugin-react` that conflict with rules in this plugin
|
|
8596
8596
|
*/
|
|
8597
|
-
["disable-conflict-eslint-plugin-react"]: disable_conflict_eslint_plugin_react_exports,
|
|
8597
|
+
["disable-conflict-eslint-plugin-react"]: createConfig(disable_conflict_eslint_plugin_react_exports),
|
|
8598
8598
|
/**
|
|
8599
8599
|
* Disable rules in `eslint-plugin-react-hooks` that conflict with rules in this plugin
|
|
8600
8600
|
*/
|
|
8601
|
-
["disable-conflict-eslint-plugin-react-hooks"]: disable_conflict_eslint_plugin_react_hooks_exports,
|
|
8601
|
+
["disable-conflict-eslint-plugin-react-hooks"]: createConfig(disable_conflict_eslint_plugin_react_hooks_exports),
|
|
8602
8602
|
/**
|
|
8603
8603
|
* Disable experimental rules that might be subject to change in the future
|
|
8604
8604
|
*/
|
|
8605
|
-
["disable-experimental"]: disable_experimental_exports,
|
|
8605
|
+
["disable-experimental"]: createConfig(disable_experimental_exports),
|
|
8606
8606
|
/**
|
|
8607
8607
|
* Disable rules that can be enforced by TypeScript
|
|
8608
8608
|
*/
|
|
8609
|
-
["disable-type-checked"]: disable_type_checked_exports,
|
|
8609
|
+
["disable-type-checked"]: createConfig(disable_type_checked_exports),
|
|
8610
8610
|
/**
|
|
8611
8611
|
* Enforce rules that are recommended by ESLint React for general purpose React + React DOM projects
|
|
8612
8612
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-react-x",
|
|
3
|
-
"version": "5.18.
|
|
3
|
+
"version": "5.18.10",
|
|
4
4
|
"description": "A set of composable ESLint rules for libraries and frameworks that use React as a UI runtime.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
"dist"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@eslint-react/ast": "5.18.
|
|
40
|
-
"@eslint-react/core": "5.18.
|
|
41
|
-
"@eslint-react/eslint": "5.18.
|
|
42
|
-
"@eslint-react/jsx": "5.18.
|
|
43
|
-
"@eslint-react/shared": "5.18.
|
|
44
|
-
"@eslint-react/var": "5.18.
|
|
39
|
+
"@eslint-react/ast": "5.18.10",
|
|
40
|
+
"@eslint-react/core": "5.18.10",
|
|
41
|
+
"@eslint-react/eslint": "5.18.10",
|
|
42
|
+
"@eslint-react/jsx": "5.18.10",
|
|
43
|
+
"@eslint-react/shared": "5.18.10",
|
|
44
|
+
"@eslint-react/var": "5.18.10",
|
|
45
45
|
"@typescript-eslint/scope-manager": "^8.69.0",
|
|
46
46
|
"@typescript-eslint/type-utils": "^8.69.0",
|
|
47
47
|
"@typescript-eslint/types": "^8.69.0",
|