eslint-plugin-react-debug 1.24.0-next.16 → 1.24.0-next.17
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 +1 -6
- package/dist/index.mjs +1 -6
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ var utils = require('@typescript-eslint/utils');
|
|
|
6
6
|
|
|
7
7
|
// package.json
|
|
8
8
|
var name = "eslint-plugin-react-debug";
|
|
9
|
-
var version = "1.24.0-next.
|
|
9
|
+
var version = "1.24.0-next.17";
|
|
10
10
|
var createRule = shared.createRuleForPlugin("debug");
|
|
11
11
|
|
|
12
12
|
// src/rules/class-component.ts
|
|
@@ -18,7 +18,6 @@ var class_component_default = createRule({
|
|
|
18
18
|
meta: {
|
|
19
19
|
type: "problem",
|
|
20
20
|
docs: {
|
|
21
|
-
// eslint-disable-next-line eslint-plugin/require-meta-docs-description
|
|
22
21
|
description: "report all class components, including anonymous ones",
|
|
23
22
|
[Symbol.for("rule_features")]: RULE_FEATURES
|
|
24
23
|
},
|
|
@@ -56,7 +55,6 @@ var function_component_default = createRule({
|
|
|
56
55
|
meta: {
|
|
57
56
|
type: "problem",
|
|
58
57
|
docs: {
|
|
59
|
-
// eslint-disable-next-line eslint-plugin/require-meta-docs-description
|
|
60
58
|
description: "report all function components, including anonymous ones",
|
|
61
59
|
[Symbol.for("rule_features")]: RULE_FEATURES2
|
|
62
60
|
},
|
|
@@ -105,7 +103,6 @@ var hook_default = createRule({
|
|
|
105
103
|
meta: {
|
|
106
104
|
type: "problem",
|
|
107
105
|
docs: {
|
|
108
|
-
// eslint-disable-next-line eslint-plugin/require-meta-docs-description
|
|
109
106
|
description: "report all React Hooks",
|
|
110
107
|
[Symbol.for("rule_features")]: RULE_FEATURES3
|
|
111
108
|
},
|
|
@@ -144,7 +141,6 @@ var is_from_react_default = createRule({
|
|
|
144
141
|
meta: {
|
|
145
142
|
type: "problem",
|
|
146
143
|
docs: {
|
|
147
|
-
// eslint-disable-next-line eslint-plugin/require-meta-docs-description
|
|
148
144
|
description: "report all identifiers that are initialized from React.",
|
|
149
145
|
[Symbol.for("rule_features")]: RULE_FEATURES4
|
|
150
146
|
},
|
|
@@ -181,7 +177,6 @@ var is_from_react_default = createRule({
|
|
|
181
177
|
messageId: "isFromReact",
|
|
182
178
|
node,
|
|
183
179
|
data: {
|
|
184
|
-
// eslint-disable-next-line eslint-plugin/no-unused-placeholders
|
|
185
180
|
type: node.type,
|
|
186
181
|
name: name2,
|
|
187
182
|
importSource
|
package/dist/index.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { AST_NODE_TYPES } from '@typescript-eslint/utils';
|
|
|
4
4
|
|
|
5
5
|
// package.json
|
|
6
6
|
var name = "eslint-plugin-react-debug";
|
|
7
|
-
var version = "1.24.0-next.
|
|
7
|
+
var version = "1.24.0-next.17";
|
|
8
8
|
var createRule = createRuleForPlugin("debug");
|
|
9
9
|
|
|
10
10
|
// src/rules/class-component.ts
|
|
@@ -16,7 +16,6 @@ var class_component_default = createRule({
|
|
|
16
16
|
meta: {
|
|
17
17
|
type: "problem",
|
|
18
18
|
docs: {
|
|
19
|
-
// eslint-disable-next-line eslint-plugin/require-meta-docs-description
|
|
20
19
|
description: "report all class components, including anonymous ones",
|
|
21
20
|
[Symbol.for("rule_features")]: RULE_FEATURES
|
|
22
21
|
},
|
|
@@ -54,7 +53,6 @@ var function_component_default = createRule({
|
|
|
54
53
|
meta: {
|
|
55
54
|
type: "problem",
|
|
56
55
|
docs: {
|
|
57
|
-
// eslint-disable-next-line eslint-plugin/require-meta-docs-description
|
|
58
56
|
description: "report all function components, including anonymous ones",
|
|
59
57
|
[Symbol.for("rule_features")]: RULE_FEATURES2
|
|
60
58
|
},
|
|
@@ -103,7 +101,6 @@ var hook_default = createRule({
|
|
|
103
101
|
meta: {
|
|
104
102
|
type: "problem",
|
|
105
103
|
docs: {
|
|
106
|
-
// eslint-disable-next-line eslint-plugin/require-meta-docs-description
|
|
107
104
|
description: "report all React Hooks",
|
|
108
105
|
[Symbol.for("rule_features")]: RULE_FEATURES3
|
|
109
106
|
},
|
|
@@ -142,7 +139,6 @@ var is_from_react_default = createRule({
|
|
|
142
139
|
meta: {
|
|
143
140
|
type: "problem",
|
|
144
141
|
docs: {
|
|
145
|
-
// eslint-disable-next-line eslint-plugin/require-meta-docs-description
|
|
146
142
|
description: "report all identifiers that are initialized from React.",
|
|
147
143
|
[Symbol.for("rule_features")]: RULE_FEATURES4
|
|
148
144
|
},
|
|
@@ -179,7 +175,6 @@ var is_from_react_default = createRule({
|
|
|
179
175
|
messageId: "isFromReact",
|
|
180
176
|
node,
|
|
181
177
|
data: {
|
|
182
|
-
// eslint-disable-next-line eslint-plugin/no-unused-placeholders
|
|
183
178
|
type: node.type,
|
|
184
179
|
name: name2,
|
|
185
180
|
importSource
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-react-debug",
|
|
3
|
-
"version": "1.24.0-next.
|
|
3
|
+
"version": "1.24.0-next.17",
|
|
4
4
|
"description": "ESLint React's ESLint plugin for debugging related rules.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"@typescript-eslint/types": "^8.20.0",
|
|
47
47
|
"@typescript-eslint/utils": "^8.20.0",
|
|
48
48
|
"string-ts": "^2.2.0",
|
|
49
|
-
"ts-pattern": "^5.6.
|
|
50
|
-
"@eslint-react/ast": "1.24.0-next.
|
|
51
|
-
"@eslint-react/
|
|
52
|
-
"@eslint-react/
|
|
53
|
-
"@eslint-react/jsx": "1.24.0-next.
|
|
54
|
-
"@eslint-react/shared": "1.24.0-next.
|
|
55
|
-
"@eslint-react/var": "1.24.0-next.
|
|
49
|
+
"ts-pattern": "^5.6.1",
|
|
50
|
+
"@eslint-react/ast": "1.24.0-next.17",
|
|
51
|
+
"@eslint-react/core": "1.24.0-next.17",
|
|
52
|
+
"@eslint-react/eff": "1.24.0-next.17",
|
|
53
|
+
"@eslint-react/jsx": "1.24.0-next.17",
|
|
54
|
+
"@eslint-react/shared": "1.24.0-next.17",
|
|
55
|
+
"@eslint-react/var": "1.24.0-next.17"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@types/react": "^19.0.7",
|