eslint-plugin-react-debug 3.0.0-next.33 → 3.0.0-next.34

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -7
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -42,7 +42,7 @@ const settings = { "react-x": DEFAULT_ESLINT_REACT_SETTINGS };
42
42
  //#endregion
43
43
  //#region package.json
44
44
  var name = "eslint-plugin-react-debug";
45
- var version = "3.0.0-next.33";
45
+ var version = "3.0.0-next.34";
46
46
 
47
47
  //#endregion
48
48
  //#region src/utils/create-rule.ts
@@ -58,7 +58,7 @@ function stringify(value) {
58
58
  }
59
59
 
60
60
  //#endregion
61
- //#region src/rules/class-component.ts
61
+ //#region src/rules/class-component/class-component.ts
62
62
  const RULE_NAME$5 = "class-component";
63
63
  var class_component_default = createRule({
64
64
  meta: {
@@ -83,7 +83,7 @@ function create$5(context) {
83
83
  }
84
84
 
85
85
  //#endregion
86
- //#region src/rules/function-component.ts
86
+ //#region src/rules/function-component/function-component.ts
87
87
  const RULE_NAME$4 = "function-component";
88
88
  var function_component_default = createRule({
89
89
  meta: {
@@ -117,7 +117,7 @@ function create$4(context) {
117
117
  }
118
118
 
119
119
  //#endregion
120
- //#region src/rules/hook.ts
120
+ //#region src/rules/hook/hook.ts
121
121
  const RULE_NAME$3 = "hook";
122
122
  var hook_default = createRule({
123
123
  meta: {
@@ -145,7 +145,7 @@ function create$3(context) {
145
145
  }
146
146
 
147
147
  //#endregion
148
- //#region src/rules/is-from-react.ts
148
+ //#region src/rules/is-from-react/is-from-react.ts
149
149
  const RULE_NAME$2 = "is-from-react";
150
150
  var is_from_react_default = createRule({
151
151
  meta: {
@@ -195,7 +195,7 @@ function isFromReact(node, initialScope, importSource = "react") {
195
195
  }
196
196
 
197
197
  //#endregion
198
- //#region src/rules/is-from-ref.ts
198
+ //#region src/rules/is-from-ref/is-from-ref.ts
199
199
  const RULE_NAME$1 = "is-from-ref";
200
200
  var is_from_ref_default = createRule({
201
201
  meta: {
@@ -238,7 +238,7 @@ function getRefInitNode(node, initialScope) {
238
238
  }
239
239
 
240
240
  //#endregion
241
- //#region src/rules/jsx.ts
241
+ //#region src/rules/jsx/jsx.ts
242
242
  const { JsxEmit } = core;
243
243
  const RULE_NAME = "jsx";
244
244
  var jsx_default = createRule({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-react-debug",
3
- "version": "3.0.0-next.33",
3
+ "version": "3.0.0-next.34",
4
4
  "description": "ESLint React's ESLint plugin for debugging related rules.",
5
5
  "keywords": [
6
6
  "react",
@@ -43,11 +43,11 @@
43
43
  "@typescript-eslint/types": "canary",
44
44
  "@typescript-eslint/utils": "canary",
45
45
  "ts-pattern": "^5.9.0",
46
- "@eslint-react/ast": "3.0.0-next.33",
47
- "@eslint-react/core": "3.0.0-next.33",
48
- "@eslint-react/eff": "3.0.0-next.33",
49
- "@eslint-react/shared": "3.0.0-next.33",
50
- "@eslint-react/var": "3.0.0-next.33"
46
+ "@eslint-react/core": "3.0.0-next.34",
47
+ "@eslint-react/eff": "3.0.0-next.34",
48
+ "@eslint-react/ast": "3.0.0-next.34",
49
+ "@eslint-react/shared": "3.0.0-next.34",
50
+ "@eslint-react/var": "3.0.0-next.34"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/react": "^19.2.14",