@tanstack/eslint-plugin-query 5.101.3 → 5.102.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/build/legacy/index.cjs +46 -1802
- package/build/legacy/index.cjs.map +1 -1
- package/build/legacy/index.d.cts +82 -3
- package/build/legacy/index.d.cts.map +1 -0
- package/build/legacy/index.d.ts +82 -3
- package/build/legacy/index.d.ts.map +1 -0
- package/build/legacy/index.js +39 -56
- package/build/legacy/index.js.map +1 -1
- package/build/legacy/rules-Bv1SB3jU.js +1172 -0
- package/build/legacy/rules-Bv1SB3jU.js.map +1 -0
- package/build/legacy/rules-ChMfhjqW.cjs +1177 -0
- package/build/legacy/rules-ChMfhjqW.cjs.map +1 -0
- package/build/legacy/rules.cjs +3 -1751
- package/build/legacy/rules.d.cts +7 -1
- package/build/legacy/rules.d.cts.map +1 -0
- package/build/legacy/rules.d.ts +7 -1
- package/build/legacy/rules.d.ts.map +1 -0
- package/build/legacy/rules.js +2 -7
- package/build/legacy/types.cjs +1 -19
- package/build/legacy/types.d.cts +7 -1
- package/build/legacy/types.d.cts.map +1 -0
- package/build/legacy/types.d.ts +7 -1
- package/build/legacy/types.d.ts.map +1 -0
- package/build/legacy/types.js +1 -1
- package/build/modern/index.cjs +46 -1788
- package/build/modern/index.cjs.map +1 -1
- package/build/modern/index.d.cts +83 -3
- package/build/modern/index.d.cts.map +1 -0
- package/build/modern/index.d.ts +83 -3
- package/build/modern/index.d.ts.map +1 -0
- package/build/modern/index.js +40 -56
- package/build/modern/index.js.map +1 -1
- package/build/modern/rules-B1yVUvLh.cjs +1158 -0
- package/build/modern/rules-B1yVUvLh.cjs.map +1 -0
- package/build/modern/rules-DzixDjO7.js +1153 -0
- package/build/modern/rules-DzixDjO7.js.map +1 -0
- package/build/modern/rules.cjs +3 -1737
- package/build/modern/rules.d.cts +8 -1
- package/build/modern/rules.d.cts.map +1 -0
- package/build/modern/rules.d.ts +8 -1
- package/build/modern/rules.d.ts.map +1 -0
- package/build/modern/rules.js +3 -7
- package/build/modern/types.cjs +1 -19
- package/build/modern/types.d.cts +8 -1
- package/build/modern/types.d.cts.map +1 -0
- package/build/modern/types.d.ts +8 -1
- package/build/modern/types.d.ts.map +1 -0
- package/build/modern/types.js +2 -1
- package/package.json +4 -6
- package/src/rules/exhaustive-deps/exhaustive-deps.utils.ts +15 -6
- package/src/rules/no-unstable-deps/no-unstable-deps.rule.ts +3 -3
- package/src/utils/ast-utils.ts +31 -198
- package/build/legacy/_tsup-dts-rollup.d.cts +0 -317
- package/build/legacy/_tsup-dts-rollup.d.ts +0 -317
- package/build/legacy/chunk-WVNZFPYE.js +0 -1725
- package/build/legacy/chunk-WVNZFPYE.js.map +0 -1
- package/build/legacy/rules.cjs.map +0 -1
- package/build/legacy/rules.js.map +0 -1
- package/build/legacy/types.cjs.map +0 -1
- package/build/legacy/types.js.map +0 -1
- package/build/modern/_tsup-dts-rollup.d.cts +0 -317
- package/build/modern/_tsup-dts-rollup.d.ts +0 -317
- package/build/modern/chunk-VALYN6GR.js +0 -1711
- package/build/modern/chunk-VALYN6GR.js.map +0 -1
- package/build/modern/rules.cjs.map +0 -1
- package/build/modern/rules.js.map +0 -1
- package/build/modern/types.cjs.map +0 -1
- package/build/modern/types.js.map +0 -1
package/build/legacy/rules.d.cts
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { ExtraRuleDocs } from "./types.cjs";
|
|
2
|
+
import { ESLintUtils } from "@typescript-eslint/utils";
|
|
3
|
+
//#region src/rules.d.ts
|
|
4
|
+
declare const rules: Record<string, ESLintUtils.RuleModule<string, ReadonlyArray<unknown>, ExtraRuleDocs, ESLintUtils.RuleListener>>;
|
|
5
|
+
//#endregion
|
|
6
|
+
export { rules };
|
|
7
|
+
//# sourceMappingURL=rules.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rules.d.cts","names":[],"sources":["../../src/rules.ts"],"mappings":";;;cAWa,OAAO,eAElB,YAAY,mBAEV,wBACA,eACA,YAAY"}
|
package/build/legacy/rules.d.ts
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { ExtraRuleDocs } from "./types.js";
|
|
2
|
+
import { ESLintUtils } from "@typescript-eslint/utils";
|
|
3
|
+
//#region src/rules.d.ts
|
|
4
|
+
declare const rules: Record<string, ESLintUtils.RuleModule<string, ReadonlyArray<unknown>, ExtraRuleDocs, ESLintUtils.RuleListener>>;
|
|
5
|
+
//#endregion
|
|
6
|
+
export { rules };
|
|
7
|
+
//# sourceMappingURL=rules.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rules.d.ts","names":[],"sources":["../../src/rules.ts"],"mappings":";;;cAWa,OAAO,eAElB,YAAY,mBAEV,wBACA,eACA,YAAY"}
|
package/build/legacy/rules.js
CHANGED
package/build/legacy/types.cjs
CHANGED
|
@@ -1,19 +1 @@
|
|
|
1
|
-
"
|
|
2
|
-
var __defProp = Object.defineProperty;
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __copyProps = (to, from, except, desc) => {
|
|
7
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
8
|
-
for (let key of __getOwnPropNames(from))
|
|
9
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
10
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
11
|
-
}
|
|
12
|
-
return to;
|
|
13
|
-
};
|
|
14
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
15
|
-
|
|
16
|
-
// src/types.ts
|
|
17
|
-
var types_exports = {};
|
|
18
|
-
module.exports = __toCommonJS(types_exports);
|
|
19
|
-
//# sourceMappingURL=types.cjs.map
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
package/build/legacy/types.d.cts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.cts","names":[],"sources":["../../src/types.ts"],"mappings":";KAAY;EACV"}
|
package/build/legacy/types.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","names":[],"sources":["../../src/types.ts"],"mappings":";KAAY;EACV"}
|
package/build/legacy/types.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
export {};
|