eslint-plugin-react-debug 1.37.1-next.4 → 1.37.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 +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -30,7 +30,7 @@ var settings = {
|
|
|
30
30
|
|
|
31
31
|
// package.json
|
|
32
32
|
var name2 = "eslint-plugin-react-debug";
|
|
33
|
-
var version = "1.37.1
|
|
33
|
+
var version = "1.37.1";
|
|
34
34
|
var createRule = shared.createRuleForPlugin("debug");
|
|
35
35
|
|
|
36
36
|
// src/rules/class-component.ts
|
|
@@ -42,7 +42,7 @@ var class_component_default = createRule({
|
|
|
42
42
|
meta: {
|
|
43
43
|
type: "problem",
|
|
44
44
|
docs: {
|
|
45
|
-
description: "
|
|
45
|
+
description: "Reports all class components.",
|
|
46
46
|
[Symbol.for("rule_features")]: RULE_FEATURES
|
|
47
47
|
},
|
|
48
48
|
messages: {
|
|
@@ -80,7 +80,7 @@ var function_component_default = createRule({
|
|
|
80
80
|
meta: {
|
|
81
81
|
type: "problem",
|
|
82
82
|
docs: {
|
|
83
|
-
description: "
|
|
83
|
+
description: "Reports all function components.",
|
|
84
84
|
[Symbol.for("rule_features")]: RULE_FEATURES2
|
|
85
85
|
},
|
|
86
86
|
messages: {
|
|
@@ -129,7 +129,7 @@ var hook_default = createRule({
|
|
|
129
129
|
meta: {
|
|
130
130
|
type: "problem",
|
|
131
131
|
docs: {
|
|
132
|
-
description: "
|
|
132
|
+
description: "Reports all React Hooks.",
|
|
133
133
|
[Symbol.for("rule_features")]: RULE_FEATURES3
|
|
134
134
|
},
|
|
135
135
|
messages: {
|
|
@@ -168,7 +168,7 @@ var is_from_react_default = createRule({
|
|
|
168
168
|
meta: {
|
|
169
169
|
type: "problem",
|
|
170
170
|
docs: {
|
|
171
|
-
description: "
|
|
171
|
+
description: "Report all identifiers that are initialized from React.",
|
|
172
172
|
[Symbol.for("rule_features")]: RULE_FEATURES4
|
|
173
173
|
},
|
|
174
174
|
messages: {
|
package/dist/index.mjs
CHANGED
|
@@ -28,7 +28,7 @@ var settings = {
|
|
|
28
28
|
|
|
29
29
|
// package.json
|
|
30
30
|
var name2 = "eslint-plugin-react-debug";
|
|
31
|
-
var version = "1.37.1
|
|
31
|
+
var version = "1.37.1";
|
|
32
32
|
var createRule = createRuleForPlugin("debug");
|
|
33
33
|
|
|
34
34
|
// src/rules/class-component.ts
|
|
@@ -40,7 +40,7 @@ var class_component_default = createRule({
|
|
|
40
40
|
meta: {
|
|
41
41
|
type: "problem",
|
|
42
42
|
docs: {
|
|
43
|
-
description: "
|
|
43
|
+
description: "Reports all class components.",
|
|
44
44
|
[Symbol.for("rule_features")]: RULE_FEATURES
|
|
45
45
|
},
|
|
46
46
|
messages: {
|
|
@@ -78,7 +78,7 @@ var function_component_default = createRule({
|
|
|
78
78
|
meta: {
|
|
79
79
|
type: "problem",
|
|
80
80
|
docs: {
|
|
81
|
-
description: "
|
|
81
|
+
description: "Reports all function components.",
|
|
82
82
|
[Symbol.for("rule_features")]: RULE_FEATURES2
|
|
83
83
|
},
|
|
84
84
|
messages: {
|
|
@@ -127,7 +127,7 @@ var hook_default = createRule({
|
|
|
127
127
|
meta: {
|
|
128
128
|
type: "problem",
|
|
129
129
|
docs: {
|
|
130
|
-
description: "
|
|
130
|
+
description: "Reports all React Hooks.",
|
|
131
131
|
[Symbol.for("rule_features")]: RULE_FEATURES3
|
|
132
132
|
},
|
|
133
133
|
messages: {
|
|
@@ -166,7 +166,7 @@ var is_from_react_default = createRule({
|
|
|
166
166
|
meta: {
|
|
167
167
|
type: "problem",
|
|
168
168
|
docs: {
|
|
169
|
-
description: "
|
|
169
|
+
description: "Report all identifiers that are initialized from React.",
|
|
170
170
|
[Symbol.for("rule_features")]: RULE_FEATURES4
|
|
171
171
|
},
|
|
172
172
|
messages: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-react-debug",
|
|
3
|
-
"version": "1.37.1
|
|
3
|
+
"version": "1.37.1",
|
|
4
4
|
"description": "ESLint React's ESLint plugin for debugging related rules.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -49,12 +49,12 @@
|
|
|
49
49
|
"@typescript-eslint/utils": "^8.27.0",
|
|
50
50
|
"string-ts": "^2.2.1",
|
|
51
51
|
"ts-pattern": "^5.6.2",
|
|
52
|
-
"@eslint-react/ast": "1.37.1
|
|
53
|
-
"@eslint-react/core": "1.37.1
|
|
54
|
-
"@eslint-react/eff": "1.37.1
|
|
55
|
-
"@eslint-react/shared": "1.37.1
|
|
56
|
-
"@eslint-react/var": "1.37.1
|
|
57
|
-
"@eslint-react/jsx": "1.37.1
|
|
52
|
+
"@eslint-react/ast": "1.37.1",
|
|
53
|
+
"@eslint-react/core": "1.37.1",
|
|
54
|
+
"@eslint-react/eff": "1.37.1",
|
|
55
|
+
"@eslint-react/shared": "1.37.1",
|
|
56
|
+
"@eslint-react/var": "1.37.1",
|
|
57
|
+
"@eslint-react/jsx": "1.37.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@types/react": "^19.0.12",
|