eslint-plugin-react-debug 2.5.3 → 2.5.4-beta.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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +6 -6
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.5.3";
44
+ var version = "2.5.4-beta.1";
45
45
 
46
46
  //#endregion
47
47
  //#region src/utils/create-rule.ts
@@ -62,7 +62,7 @@ const RULE_NAME$4 = "class-component";
62
62
  var class_component_default = createRule({
63
63
  meta: {
64
64
  type: "problem",
65
- docs: { description: "Reports all class components in json format." },
65
+ docs: { description: "Reports all class components in JSON format." },
66
66
  messages: { classComponent: "{{json}}" },
67
67
  schema: []
68
68
  },
@@ -90,7 +90,7 @@ const RULE_NAME$3 = "function-component";
90
90
  var function_component_default = createRule({
91
91
  meta: {
92
92
  type: "problem",
93
- docs: { description: "Reports all function components in json format." },
93
+ docs: { description: "Reports all function components in JSON format." },
94
94
  messages: { functionComponent: "{{json}}" },
95
95
  schema: []
96
96
  },
@@ -128,7 +128,7 @@ const RULE_NAME$2 = "hook";
128
128
  var hook_default = createRule({
129
129
  meta: {
130
130
  type: "problem",
131
- docs: { description: "Reports all React Hooks in json format." },
131
+ docs: { description: "Reports all React Hooks in JSON format." },
132
132
  messages: { hook: "{{json}}" },
133
133
  schema: []
134
134
  },
@@ -159,7 +159,7 @@ const RULE_NAME$1 = "is-from-react";
159
159
  var is_from_react_default = createRule({
160
160
  meta: {
161
161
  type: "problem",
162
- docs: { description: "Reports all identifiers that are initialized from React in json format." },
162
+ docs: { description: "Reports all identifiers initialized from React in JSON format." },
163
163
  messages: { isFromReact: "{{json}}" },
164
164
  schema: []
165
165
  },
@@ -209,7 +209,7 @@ const RULE_NAME = "jsx";
209
209
  var jsx_default = createRule({
210
210
  meta: {
211
211
  type: "problem",
212
- docs: { description: "Reports all JSX elements and fragments in json format." },
212
+ docs: { description: "Reports all JSX elements and fragments in JSON format." },
213
213
  messages: { jsx: "{{json}}" },
214
214
  schema: []
215
215
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-react-debug",
3
- "version": "2.5.3",
3
+ "version": "2.5.4-beta.1",
4
4
  "description": "ESLint React's ESLint plugin for debugging related rules.",
5
5
  "keywords": [
6
6
  "react",
@@ -44,11 +44,11 @@
44
44
  "@typescript-eslint/utils": "^8.52.0",
45
45
  "string-ts": "^2.3.1",
46
46
  "ts-pattern": "^5.9.0",
47
- "@eslint-react/ast": "2.5.3",
48
- "@eslint-react/eff": "2.5.3",
49
- "@eslint-react/core": "2.5.3",
50
- "@eslint-react/shared": "2.5.3",
51
- "@eslint-react/var": "2.5.3"
47
+ "@eslint-react/core": "2.5.4-beta.1",
48
+ "@eslint-react/ast": "2.5.4-beta.1",
49
+ "@eslint-react/eff": "2.5.4-beta.1",
50
+ "@eslint-react/var": "2.5.4-beta.1",
51
+ "@eslint-react/shared": "2.5.4-beta.1"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/react": "^19.2.7",