@eslint-react/shared 2.3.2-next.7 → 2.3.3-beta.0
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 +2 -3
- package/package.json +2 -3
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { unit } from "@eslint-react/eff";
|
|
|
2
2
|
import { z } from "zod/v4";
|
|
3
3
|
import * as tseslint from "@typescript-eslint/utils/ts-eslint";
|
|
4
4
|
import { ReportDescriptor } from "@typescript-eslint/utils/ts-eslint";
|
|
5
|
-
import { PartialDeep } from "type-fest";
|
|
6
5
|
|
|
7
6
|
//#region src/_id.d.ts
|
|
8
7
|
/**
|
|
@@ -276,7 +275,7 @@ declare function isESLintReactSettings(settings: unknown): settings is ESLintRea
|
|
|
276
275
|
* Coerces unknown input to ESLintSettings type
|
|
277
276
|
* @param settings The settings object to coerce
|
|
278
277
|
*/
|
|
279
|
-
declare const coerceESLintSettings: (settings: unknown) =>
|
|
278
|
+
declare const coerceESLintSettings: (settings: unknown) => Partial<ESLintSettings>;
|
|
280
279
|
/**
|
|
281
280
|
* Decodes and validates ESLint settings, using defaults if invalid
|
|
282
281
|
* @param settings The settings object to decode
|
|
@@ -286,7 +285,7 @@ declare const decodeESLintSettings: (settings: unknown) => ESLintSettings;
|
|
|
286
285
|
* Coerces unknown input to ESLintReactSettings type
|
|
287
286
|
* @param settings The settings object to coerce
|
|
288
287
|
*/
|
|
289
|
-
declare const coerceSettings: (settings: unknown) =>
|
|
288
|
+
declare const coerceSettings: (settings: unknown) => Partial<ESLintReactSettings>;
|
|
290
289
|
/**
|
|
291
290
|
* Decodes and validates ESLint React settings, using defaults if invalid
|
|
292
291
|
* @param settings The settings object to decode
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/shared",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3-beta.0",
|
|
4
4
|
"description": "ESLint React's Shared constants and functions.",
|
|
5
5
|
"homepage": "https://github.com/Rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -33,13 +33,12 @@
|
|
|
33
33
|
"@typescript-eslint/utils": "^8.46.3",
|
|
34
34
|
"ts-pattern": "^5.9.0",
|
|
35
35
|
"zod": "^4.1.12",
|
|
36
|
-
"@eslint-react/eff": "2.3.
|
|
36
|
+
"@eslint-react/eff": "2.3.3-beta.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@tsconfig/node22": "^22.0.2",
|
|
40
40
|
"@types/picomatch": "^4.0.2",
|
|
41
41
|
"tsdown": "^0.16.0",
|
|
42
|
-
"type-fest": "^5.2.0",
|
|
43
42
|
"@local/configs": "0.0.0"
|
|
44
43
|
},
|
|
45
44
|
"engines": {
|