eslint-plugin-react-debug 2.0.0-next.157 → 2.0.0-next.159
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 +6 -6
- package/dist/index.js +1 -1
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import { RulePreset } from "@eslint-react/kit";
|
|
1
|
+
import * as _eslint_react_kit0 from "@eslint-react/kit";
|
|
3
2
|
|
|
4
3
|
//#region src/index.d.ts
|
|
5
4
|
declare const _default: {
|
|
6
5
|
configs: {
|
|
7
6
|
all: {
|
|
8
7
|
plugins: {
|
|
9
|
-
"react-debug":
|
|
8
|
+
"react-debug": _eslint_react_kit0.CompatiblePlugin;
|
|
10
9
|
};
|
|
11
10
|
name?: string;
|
|
12
|
-
rules?: Record<string,
|
|
11
|
+
rules?: Record<string, _eslint_react_kit0.RuleConfig>;
|
|
12
|
+
settings?: _eslint_react_kit0.SettingsConfig;
|
|
13
13
|
};
|
|
14
14
|
"all-legacy": {
|
|
15
15
|
plugins: string[];
|
|
16
|
-
rules:
|
|
16
|
+
rules: Record<string, _eslint_react_kit0.RuleConfig<unknown[]>> | undefined;
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
19
|
meta: {
|
|
20
20
|
name: string;
|
|
21
21
|
version: string;
|
|
22
22
|
};
|
|
23
|
-
rules: Record<string,
|
|
23
|
+
rules: Record<string, _eslint_react_kit0.CompatibleRule>;
|
|
24
24
|
};
|
|
25
25
|
//#endregion
|
|
26
26
|
export { _default as default };
|
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ const settings = { "react-x": DEFAULT_ESLINT_REACT_SETTINGS };
|
|
|
36
36
|
//#endregion
|
|
37
37
|
//#region package.json
|
|
38
38
|
var name = "eslint-plugin-react-debug";
|
|
39
|
-
var version = "2.0.0-next.
|
|
39
|
+
var version = "2.0.0-next.159";
|
|
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-debug",
|
|
3
|
-
"version": "2.0.0-next.
|
|
3
|
+
"version": "2.0.0-next.159",
|
|
4
4
|
"description": "ESLint React's ESLint plugin for debugging related rules.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -41,12 +41,12 @@
|
|
|
41
41
|
"@typescript-eslint/utils": "^8.41.0",
|
|
42
42
|
"string-ts": "^2.2.1",
|
|
43
43
|
"ts-pattern": "^5.8.0",
|
|
44
|
-
"@eslint-react/
|
|
45
|
-
"@eslint-react/
|
|
46
|
-
"@eslint-react/
|
|
47
|
-
"@eslint-react/var": "2.0.0-next.
|
|
48
|
-
"@eslint-react/shared": "2.0.0-next.
|
|
49
|
-
"@eslint-react/
|
|
44
|
+
"@eslint-react/core": "2.0.0-next.159",
|
|
45
|
+
"@eslint-react/eff": "2.0.0-next.159",
|
|
46
|
+
"@eslint-react/kit": "2.0.0-next.159",
|
|
47
|
+
"@eslint-react/var": "2.0.0-next.159",
|
|
48
|
+
"@eslint-react/shared": "2.0.0-next.159",
|
|
49
|
+
"@eslint-react/ast": "2.0.0-next.159"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@types/react": "^19.1.12",
|