@anolilab/eslint-config 16.2.0 → 16.2.2
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/CHANGELOG.md +13 -0
- package/dist/index.cjs +4 -4
- package/dist/index.d.cts +5 -0
- package/dist/index.d.mts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.mjs +3 -3
- package/package.json +25 -1
package/dist/index.d.cts
CHANGED
|
@@ -500,6 +500,11 @@ interface RuleOptions {
|
|
|
500
500
|
* @see https://tanstack.com/query/latest/docs/eslint/infinite-query-property-order
|
|
501
501
|
*/
|
|
502
502
|
'@tanstack/query/infinite-query-property-order'?: Linter.RuleEntry<[]>
|
|
503
|
+
/**
|
|
504
|
+
* Ensure correct order of inference-sensitive properties in useMutation()
|
|
505
|
+
* @see https://tanstack.com/query/latest/docs/eslint/mutation-property-order
|
|
506
|
+
*/
|
|
507
|
+
'@tanstack/query/mutation-property-order'?: Linter.RuleEntry<[]>
|
|
503
508
|
/**
|
|
504
509
|
* Disallows rest destructuring in queries
|
|
505
510
|
* @see https://tanstack.com/query/latest/docs/eslint/no-rest-destructuring
|
package/dist/index.d.mts
CHANGED
|
@@ -500,6 +500,11 @@ interface RuleOptions {
|
|
|
500
500
|
* @see https://tanstack.com/query/latest/docs/eslint/infinite-query-property-order
|
|
501
501
|
*/
|
|
502
502
|
'@tanstack/query/infinite-query-property-order'?: Linter.RuleEntry<[]>
|
|
503
|
+
/**
|
|
504
|
+
* Ensure correct order of inference-sensitive properties in useMutation()
|
|
505
|
+
* @see https://tanstack.com/query/latest/docs/eslint/mutation-property-order
|
|
506
|
+
*/
|
|
507
|
+
'@tanstack/query/mutation-property-order'?: Linter.RuleEntry<[]>
|
|
503
508
|
/**
|
|
504
509
|
* Disallows rest destructuring in queries
|
|
505
510
|
* @see https://tanstack.com/query/latest/docs/eslint/no-rest-destructuring
|
package/dist/index.d.ts
CHANGED
|
@@ -500,6 +500,11 @@ interface RuleOptions {
|
|
|
500
500
|
* @see https://tanstack.com/query/latest/docs/eslint/infinite-query-property-order
|
|
501
501
|
*/
|
|
502
502
|
'@tanstack/query/infinite-query-property-order'?: Linter.RuleEntry<[]>
|
|
503
|
+
/**
|
|
504
|
+
* Ensure correct order of inference-sensitive properties in useMutation()
|
|
505
|
+
* @see https://tanstack.com/query/latest/docs/eslint/mutation-property-order
|
|
506
|
+
*/
|
|
507
|
+
'@tanstack/query/mutation-property-order'?: Linter.RuleEntry<[]>
|
|
503
508
|
/**
|
|
504
509
|
* Disallows rest destructuring in queries
|
|
505
510
|
* @see https://tanstack.com/query/latest/docs/eslint/no-rest-destructuring
|