@eslint-react/shared 1.9.2-next.4 → 1.9.2-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.
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -2206,7 +2206,7 @@ type PartialObjectDeep<ObjectType extends object, Options extends PartialDeepOpt
|
|
|
2206
2206
|
* The initial settings for "react-x".
|
|
2207
2207
|
*/
|
|
2208
2208
|
declare const INITIAL_ESLINT_REACT_SETTINGS: {
|
|
2209
|
-
readonly skipImportCheck:
|
|
2209
|
+
readonly skipImportCheck: false;
|
|
2210
2210
|
};
|
|
2211
2211
|
/**
|
|
2212
2212
|
* The default ESLint settings for "react-x".
|
|
@@ -2216,7 +2216,7 @@ declare const DEFAULT_ESLINT_REACT_SETTINGS: {
|
|
|
2216
2216
|
readonly useLayoutEffect: ["useIsomorphicLayoutEffect"];
|
|
2217
2217
|
};
|
|
2218
2218
|
readonly polymorphicPropName: "as";
|
|
2219
|
-
readonly skipImportCheck:
|
|
2219
|
+
readonly skipImportCheck: false;
|
|
2220
2220
|
readonly version: "detect";
|
|
2221
2221
|
};
|
|
2222
2222
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -2206,7 +2206,7 @@ type PartialObjectDeep<ObjectType extends object, Options extends PartialDeepOpt
|
|
|
2206
2206
|
* The initial settings for "react-x".
|
|
2207
2207
|
*/
|
|
2208
2208
|
declare const INITIAL_ESLINT_REACT_SETTINGS: {
|
|
2209
|
-
readonly skipImportCheck:
|
|
2209
|
+
readonly skipImportCheck: false;
|
|
2210
2210
|
};
|
|
2211
2211
|
/**
|
|
2212
2212
|
* The default ESLint settings for "react-x".
|
|
@@ -2216,7 +2216,7 @@ declare const DEFAULT_ESLINT_REACT_SETTINGS: {
|
|
|
2216
2216
|
readonly useLayoutEffect: ["useIsomorphicLayoutEffect"];
|
|
2217
2217
|
};
|
|
2218
2218
|
readonly polymorphicPropName: "as";
|
|
2219
|
-
readonly skipImportCheck:
|
|
2219
|
+
readonly skipImportCheck: false;
|
|
2220
2220
|
readonly version: "detect";
|
|
2221
2221
|
};
|
|
2222
2222
|
/**
|
package/dist/index.js
CHANGED
|
@@ -1282,14 +1282,14 @@ function createMemoizedFunction(fn, options) {
|
|
|
1282
1282
|
return memoized;
|
|
1283
1283
|
}
|
|
1284
1284
|
var INITIAL_ESLINT_REACT_SETTINGS = {
|
|
1285
|
-
skipImportCheck:
|
|
1285
|
+
skipImportCheck: false
|
|
1286
1286
|
};
|
|
1287
1287
|
var DEFAULT_ESLINT_REACT_SETTINGS = {
|
|
1288
1288
|
additionalHooks: {
|
|
1289
1289
|
useLayoutEffect: ["useIsomorphicLayoutEffect"]
|
|
1290
1290
|
},
|
|
1291
1291
|
polymorphicPropName: "as",
|
|
1292
|
-
skipImportCheck:
|
|
1292
|
+
skipImportCheck: false,
|
|
1293
1293
|
version: "detect"
|
|
1294
1294
|
};
|
|
1295
1295
|
var defineSettings = tools.F.identity;
|
package/dist/index.mjs
CHANGED
|
@@ -1276,14 +1276,14 @@ function createMemoizedFunction(fn, options) {
|
|
|
1276
1276
|
return memoized;
|
|
1277
1277
|
}
|
|
1278
1278
|
var INITIAL_ESLINT_REACT_SETTINGS = {
|
|
1279
|
-
skipImportCheck:
|
|
1279
|
+
skipImportCheck: false
|
|
1280
1280
|
};
|
|
1281
1281
|
var DEFAULT_ESLINT_REACT_SETTINGS = {
|
|
1282
1282
|
additionalHooks: {
|
|
1283
1283
|
useLayoutEffect: ["useIsomorphicLayoutEffect"]
|
|
1284
1284
|
},
|
|
1285
1285
|
polymorphicPropName: "as",
|
|
1286
|
-
skipImportCheck:
|
|
1286
|
+
skipImportCheck: false,
|
|
1287
1287
|
version: "detect"
|
|
1288
1288
|
};
|
|
1289
1289
|
var defineSettings = F.identity;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-react/shared",
|
|
3
|
-
"version": "1.9.2-next.
|
|
3
|
+
"version": "1.9.2-next.6",
|
|
4
4
|
"description": "ESLint React's Shared constants and functions.",
|
|
5
5
|
"homepage": "https://github.com/rel1cx/eslint-react",
|
|
6
6
|
"bugs": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@typescript-eslint/utils": "^8.0.1",
|
|
39
39
|
"picomatch": "^4.0.2",
|
|
40
|
-
"@eslint-react/tools": "1.9.2-next.
|
|
40
|
+
"@eslint-react/tools": "1.9.2-next.6"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/picomatch": "^3.0.1",
|