eslint-plugin-react-hooks-extra 2.9.4 → 2.9.5-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.
package/README.md CHANGED
@@ -23,7 +23,7 @@ export default defineConfig(
23
23
  extends: [
24
24
  js.configs.recommended,
25
25
  tseslint.configs.recommended,
26
- // Add this plugin's config below js/tseslint configs
26
+ // Add configs from eslint-plugin-react-hooks-extra
27
27
  hooksExtra.configs.recommended,
28
28
  ],
29
29
  rules: {
package/dist/index.js CHANGED
@@ -8,9 +8,9 @@ import { getStaticValue } from "@typescript-eslint/utils/ast-utils";
8
8
  import { match } from "ts-pattern";
9
9
  import { ESLintUtils } from "@typescript-eslint/utils";
10
10
 
11
- //#region rolldown:runtime
11
+ //#region \0rolldown/runtime.js
12
12
  var __defProp = Object.defineProperty;
13
- var __exportAll = (all, symbols) => {
13
+ var __exportAll = (all, no_symbols) => {
14
14
  let target = {};
15
15
  for (var name in all) {
16
16
  __defProp(target, name, {
@@ -18,7 +18,7 @@ var __exportAll = (all, symbols) => {
18
18
  enumerable: true
19
19
  });
20
20
  }
21
- if (symbols) {
21
+ if (!no_symbols) {
22
22
  __defProp(target, Symbol.toStringTag, { value: "Module" });
23
23
  }
24
24
  return target;
@@ -36,7 +36,7 @@ const rules = { "react-hooks-extra/no-direct-set-state-in-use-effect": "warn" };
36
36
  //#endregion
37
37
  //#region package.json
38
38
  var name = "eslint-plugin-react-hooks-extra";
39
- var version = "2.9.4";
39
+ var version = "2.9.5-beta.1";
40
40
 
41
41
  //#endregion
42
42
  //#region src/utils/create-rule.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-react-hooks-extra",
3
- "version": "2.9.4",
3
+ "version": "2.9.5-beta.1",
4
4
  "description": "ESLint React's ESLint plugin for React Hooks related rules.",
5
5
  "keywords": [
6
6
  "react",
@@ -44,16 +44,16 @@
44
44
  "@typescript-eslint/types": "^8.54.0",
45
45
  "@typescript-eslint/utils": "^8.54.0",
46
46
  "ts-pattern": "^5.9.0",
47
- "@eslint-react/ast": "2.9.4",
48
- "@eslint-react/core": "2.9.4",
49
- "@eslint-react/eff": "2.9.4",
50
- "@eslint-react/shared": "2.9.4",
51
- "@eslint-react/var": "2.9.4"
47
+ "@eslint-react/ast": "2.9.5-beta.1",
48
+ "@eslint-react/core": "2.9.5-beta.1",
49
+ "@eslint-react/shared": "2.9.5-beta.1",
50
+ "@eslint-react/var": "2.9.5-beta.1",
51
+ "@eslint-react/eff": "2.9.5-beta.1"
52
52
  },
53
53
  "devDependencies": {
54
- "@types/react": "^19.2.10",
54
+ "@types/react": "^19.2.13",
55
55
  "@types/react-dom": "^19.2.3",
56
- "tsdown": "^0.20.1",
56
+ "tsdown": "^0.20.3",
57
57
  "@local/configs": "0.0.0"
58
58
  },
59
59
  "peerDependencies": {