eslint-plugin-react-debug 2.4.0-next.6 → 2.4.0-next.9
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 +2 -2
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -41,7 +41,7 @@ const settings = { "react-x": DEFAULT_ESLINT_REACT_SETTINGS };
|
|
|
41
41
|
//#endregion
|
|
42
42
|
//#region package.json
|
|
43
43
|
var name = "eslint-plugin-react-debug";
|
|
44
|
-
var version = "2.4.0-next.
|
|
44
|
+
var version = "2.4.0-next.9";
|
|
45
45
|
|
|
46
46
|
//#endregion
|
|
47
47
|
//#region src/utils/create-rule.ts
|
|
@@ -184,7 +184,7 @@ var is_from_react_default = createRule({
|
|
|
184
184
|
defaultOptions: []
|
|
185
185
|
});
|
|
186
186
|
function create$1(context) {
|
|
187
|
-
const { importSource
|
|
187
|
+
const { importSource } = getSettingsFromContext(context);
|
|
188
188
|
function visitorFunction(node) {
|
|
189
189
|
if (node.parent.type === AST_NODE_TYPES.ImportSpecifier && node.parent.imported === node && node.parent.imported.name === node.parent.local.name) return;
|
|
190
190
|
const name$2 = node.name;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-react-debug",
|
|
3
|
-
"version": "2.4.0-next.
|
|
3
|
+
"version": "2.4.0-next.9",
|
|
4
4
|
"description": "ESLint React's ESLint plugin for debugging related rules.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"./package.json"
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@typescript-eslint/scope-manager": "^8.
|
|
42
|
-
"@typescript-eslint/type-utils": "^8.
|
|
43
|
-
"@typescript-eslint/types": "^8.
|
|
44
|
-
"@typescript-eslint/utils": "^8.
|
|
41
|
+
"@typescript-eslint/scope-manager": "^8.50.0",
|
|
42
|
+
"@typescript-eslint/type-utils": "^8.50.0",
|
|
43
|
+
"@typescript-eslint/types": "^8.50.0",
|
|
44
|
+
"@typescript-eslint/utils": "^8.50.0",
|
|
45
45
|
"string-ts": "^2.3.1",
|
|
46
46
|
"ts-pattern": "^5.9.0",
|
|
47
|
-
"@eslint-react/ast": "2.4.0-next.
|
|
48
|
-
"@eslint-react/core": "2.4.0-next.
|
|
49
|
-
"@eslint-react/
|
|
50
|
-
"@eslint-react/
|
|
51
|
-
"@eslint-react/var": "2.4.0-next.
|
|
47
|
+
"@eslint-react/ast": "2.4.0-next.9",
|
|
48
|
+
"@eslint-react/core": "2.4.0-next.9",
|
|
49
|
+
"@eslint-react/shared": "2.4.0-next.9",
|
|
50
|
+
"@eslint-react/eff": "2.4.0-next.9",
|
|
51
|
+
"@eslint-react/var": "2.4.0-next.9"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@types/react": "^19.2.7",
|
|
55
55
|
"@types/react-dom": "^19.2.3",
|
|
56
|
-
"tsdown": "^0.
|
|
56
|
+
"tsdown": "^0.18.0",
|
|
57
57
|
"@local/configs": "0.0.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|