eslint-plugin-react-web-api 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
@@ -11,12 +11,9 @@ npm install --save-dev eslint-plugin-react-web-api
11
11
 
12
12
  ## Setup
13
13
 
14
- ```js
15
- // eslint.config.js
16
-
17
- // @ts-check
14
+ ```ts
18
15
  import js from "@eslint/js";
19
- import reactWebApi from "eslint-plugin-react-web-api";
16
+ import webApi from "eslint-plugin-react-web-api";
20
17
  import { defineConfig } from "eslint/config";
21
18
  import tseslint from "typescript-eslint";
22
19
 
@@ -26,7 +23,8 @@ export default defineConfig(
26
23
  extends: [
27
24
  js.configs.recommended,
28
25
  tseslint.configs.recommended,
29
- reactWebApi.configs.recommended,
26
+ // Add this plugin's config below js/tseslint configs
27
+ webApi.configs.recommended,
30
28
  ],
31
29
  rules: {
32
30
  // Put rules you want to override here
package/dist/index.js CHANGED
@@ -43,7 +43,7 @@ const settings = { "react-x": DEFAULT_ESLINT_REACT_SETTINGS };
43
43
  //#endregion
44
44
  //#region package.json
45
45
  var name = "eslint-plugin-react-web-api";
46
- var version = "2.9.4-next.0";
46
+ var version = "2.9.4";
47
47
 
48
48
  //#endregion
49
49
  //#region src/types/component-phase.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-react-web-api",
3
- "version": "2.9.4-next.0",
3
+ "version": "2.9.4",
4
4
  "description": "ESLint React's ESLint plugin for interacting with Web APIs",
5
5
  "keywords": [
6
6
  "react",
@@ -43,11 +43,11 @@
43
43
  "@typescript-eslint/utils": "^8.54.0",
44
44
  "birecord": "^0.1.1",
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/eff": "2.9.4-next.0",
49
- "@eslint-react/var": "2.9.4-next.0",
50
- "@eslint-react/shared": "2.9.4-next.0"
46
+ "@eslint-react/ast": "2.9.4",
47
+ "@eslint-react/eff": "2.9.4",
48
+ "@eslint-react/core": "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",