@eslint-react/eslint-plugin 3.0.0-next.55 → 3.0.0-next.56
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/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ESLint, Linter } from "eslint";
|
|
2
2
|
|
|
3
3
|
//#region src/index.d.ts
|
|
4
4
|
type ConfigName = "all" | "disable-conflict-eslint-plugin-react" | "disable-conflict-eslint-plugin-react-hooks" | "disable-dom" | "disable-rsc" | "disable-experimental" | "disable-type-checked" | "disable-web-api" | "dom" | "rsc" | "no-deprecated" | "off" | "recommended" | "recommended-type-checked" | "recommended-typescript" | "strict" | "strict-type-checked" | "strict-typescript" | "web-api" | "x";
|
|
5
|
-
declare const plugin:
|
|
5
|
+
declare const plugin: ESLint.Plugin & {
|
|
6
6
|
/**
|
|
7
7
|
* For more information about each preset, please refer to the documentation.
|
|
8
8
|
* @see https://eslint-react.xyz/docs/presets
|
|
9
9
|
*/
|
|
10
|
-
configs: Record<ConfigName,
|
|
10
|
+
configs: Record<ConfigName, Linter.Config>;
|
|
11
11
|
};
|
|
12
12
|
//#endregion
|
|
13
13
|
export { plugin as default };
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/eslint-plugin",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.56",
|
|
4
4
|
"description": "A unified plugin that combines all individual plugins from the eslint-react monorepo into one.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -46,16 +46,16 @@
|
|
|
46
46
|
"@typescript-eslint/types": "canary",
|
|
47
47
|
"@typescript-eslint/utils": "canary",
|
|
48
48
|
"ts-api-utils": "^2.4.0",
|
|
49
|
-
"@eslint-react/eff": "3.0.0-next.
|
|
50
|
-
"eslint-
|
|
51
|
-
"eslint-plugin-react-dom": "3.0.0-next.
|
|
52
|
-
"eslint-plugin-react-
|
|
53
|
-
"eslint-plugin-react-
|
|
54
|
-
"
|
|
55
|
-
"eslint-plugin-react-x": "3.0.0-next.
|
|
49
|
+
"@eslint-react/eff": "3.0.0-next.56",
|
|
50
|
+
"@eslint-react/shared": "3.0.0-next.56",
|
|
51
|
+
"eslint-plugin-react-dom": "3.0.0-next.56",
|
|
52
|
+
"eslint-plugin-react-naming-convention": "3.0.0-next.56",
|
|
53
|
+
"eslint-plugin-react-rsc": "3.0.0-next.56",
|
|
54
|
+
"eslint-plugin-react-web-api": "3.0.0-next.56",
|
|
55
|
+
"eslint-plugin-react-x": "3.0.0-next.56"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"tsdown": "^0.21.0-beta.
|
|
58
|
+
"tsdown": "^0.21.0-beta.2",
|
|
59
59
|
"@local/configs": "0.0.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|