@eslint-react/eslint-plugin 2.1.0-next.5 → 2.1.0-next.6

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 (3) hide show
  1. package/README.md +10 -10
  2. package/dist/index.js +1 -1
  3. package/package.json +10 -10
package/README.md CHANGED
@@ -121,16 +121,22 @@ export default defineConfig([
121
121
  - `web-api`\
122
122
  Enable rules for interacting with Web APIs.
123
123
 
124
- ### General Purpose
124
+ ## General Purpose
125
+
126
+ - `strict` (beta)\
127
+ Same as the `recommended` preset but enables additional strict rules.
125
128
 
126
129
  - `recommended`\
127
130
  Enforce rules that are recommended by ESLint React for general purpose React + React DOM projects.\
128
131
  _This preset includes the `x`, `dom`, and `web-api` presets._
129
132
 
130
- - `strict`\
131
- Same as the `recommended` preset but enables additional strict rules.
133
+ ## TypeScript Specialized
134
+
135
+ - `strict-typescript` (beta)\
136
+ Same as the `strict` preset but disables rules that can be enforced by TypeScript.
132
137
 
133
- ### TypeScript Specialized
138
+ - `strict-type-checked` (beta)\
139
+ Same as the `strict-typescript` preset but enables additional rules that require type information.
134
140
 
135
141
  - `recommended-typescript`\
136
142
  Same as the `recommended` preset but disables rules that can be enforced by TypeScript.
@@ -138,12 +144,6 @@ export default defineConfig([
138
144
  - `recommended-type-checked`\
139
145
  Same as the `recommended-typescript` preset but enables additional rules that require type information.
140
146
 
141
- - `strict-typescript`\
142
- Same as the `strict` preset but disables rules that can be enforced by TypeScript.
143
-
144
- - `strict-type-checked`\
145
- Same as the `strict-typescript` preset but enables additional rules that require type information.
146
-
147
147
  ### Other
148
148
 
149
149
  - `disable-dom`\
package/dist/index.js CHANGED
@@ -9,7 +9,7 @@ import { DEFAULT_ESLINT_REACT_SETTINGS } from "@eslint-react/shared";
9
9
 
10
10
  //#region package.json
11
11
  var name = "@eslint-react/eslint-plugin";
12
- var version = "2.1.0-next.5";
12
+ var version = "2.1.0-next.6";
13
13
 
14
14
  //#endregion
15
15
  //#region src/configs/dom.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eslint-react/eslint-plugin",
3
- "version": "2.1.0-next.5",
3
+ "version": "2.1.0-next.6",
4
4
  "description": "A unified plugin that combines all individual plugins from the eslint-react monorepo into one.",
5
5
  "keywords": [
6
6
  "react",
@@ -42,15 +42,15 @@
42
42
  "@typescript-eslint/types": "^8.46.0",
43
43
  "@typescript-eslint/utils": "^8.46.0",
44
44
  "ts-api-utils": "^2.1.0",
45
- "@eslint-react/eff": "2.1.0-next.5",
46
- "eslint-plugin-react-debug": "2.1.0-next.5",
47
- "eslint-plugin-react-dom": "2.1.0-next.5",
48
- "eslint-plugin-react-hooks-extra": "2.1.0-next.5",
49
- "@eslint-react/kit": "2.1.0-next.5",
50
- "eslint-plugin-react-naming-convention": "2.1.0-next.5",
51
- "eslint-plugin-react-x": "2.1.0-next.5",
52
- "@eslint-react/shared": "2.1.0-next.5",
53
- "eslint-plugin-react-web-api": "2.1.0-next.5"
45
+ "@eslint-react/shared": "2.1.0-next.6",
46
+ "@eslint-react/eff": "2.1.0-next.6",
47
+ "@eslint-react/kit": "2.1.0-next.6",
48
+ "eslint-plugin-react-debug": "2.1.0-next.6",
49
+ "eslint-plugin-react-hooks-extra": "2.1.0-next.6",
50
+ "eslint-plugin-react-web-api": "2.1.0-next.6",
51
+ "eslint-plugin-react-x": "2.1.0-next.6",
52
+ "eslint-plugin-react-dom": "2.1.0-next.6",
53
+ "eslint-plugin-react-naming-convention": "2.1.0-next.6"
54
54
  },
55
55
  "devDependencies": {
56
56
  "tsdown": "^0.15.6",