eslint-plugin-react-debug 2.9.4-next.0 → 2.9.4

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/README.md CHANGED
@@ -13,12 +13,9 @@ npm install --save-dev eslint-plugin-react-debug
13
13
 
14
14
  ## Setup
15
15
 
16
- ```js
17
- // eslint.config.js
18
-
19
- // @ts-check
16
+ ```ts
20
17
  import js from "@eslint/js";
21
- import reactDebug from "eslint-plugin-react-debug";
18
+ import debug from "eslint-plugin-react-debug";
22
19
  import { defineConfig } from "eslint/config";
23
20
  import tseslint from "typescript-eslint";
24
21
 
@@ -28,7 +25,8 @@ export default defineConfig(
28
25
  extends: [
29
26
  js.configs.recommended,
30
27
  tseslint.configs.recommended,
31
- reactDebug.configs.all,
28
+ // Add this plugin's config below js/tseslint configs
29
+ debug.configs.all,
32
30
  ],
33
31
  rules: {
34
32
  // Put rules you want to override here
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 = "2.9.4-next.0";
45
+ var version = "2.9.4";
46
46
 
47
47
  //#endregion
48
48
  //#region src/utils/create-rule.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-react-debug",
3
- "version": "2.9.4-next.0",
3
+ "version": "2.9.4",
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": "^8.54.0",
44
44
  "@typescript-eslint/utils": "^8.54.0",
45
45
  "ts-pattern": "^5.9.0",
46
- "@eslint-react/ast": "2.9.4-next.0",
47
- "@eslint-react/core": "2.9.4-next.0",
48
- "@eslint-react/shared": "2.9.4-next.0",
49
- "@eslint-react/var": "2.9.4-next.0",
50
- "@eslint-react/eff": "2.9.4-next.0"
46
+ "@eslint-react/ast": "2.9.4",
47
+ "@eslint-react/core": "2.9.4",
48
+ "@eslint-react/eff": "2.9.4",
49
+ "@eslint-react/shared": "2.9.4",
50
+ "@eslint-react/var": "2.9.4"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/react": "^19.2.10",