@anolilab/eslint-config 16.1.3 → 16.2.1
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 +12 -0
- package/dist/index.cjs +10 -10
- package/dist/index.d.cts +6 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.mjs +10 -10
- package/package.json +2 -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
|
|
@@ -16274,6 +16279,7 @@ interface OptionsConfig extends OptionsComponentExtensions, OptionsSilentConsole
|
|
|
16274
16279
|
astro?: boolean | (OptionsFiles & OptionsOverrides);
|
|
16275
16280
|
comments?: OptionsFiles & OptionsOverrides;
|
|
16276
16281
|
compat?: OptionsFiles;
|
|
16282
|
+
css?: boolean | (OptionsFiles & OptionsOverrides);
|
|
16277
16283
|
cwd?: string;
|
|
16278
16284
|
formatters?: OptionsFormatters | boolean;
|
|
16279
16285
|
gitignore?: FlatGitignoreOptions | boolean;
|
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
|
|
@@ -16274,6 +16279,7 @@ interface OptionsConfig extends OptionsComponentExtensions, OptionsSilentConsole
|
|
|
16274
16279
|
astro?: boolean | (OptionsFiles & OptionsOverrides);
|
|
16275
16280
|
comments?: OptionsFiles & OptionsOverrides;
|
|
16276
16281
|
compat?: OptionsFiles;
|
|
16282
|
+
css?: boolean | (OptionsFiles & OptionsOverrides);
|
|
16277
16283
|
cwd?: string;
|
|
16278
16284
|
formatters?: OptionsFormatters | boolean;
|
|
16279
16285
|
gitignore?: FlatGitignoreOptions | boolean;
|
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
|
|
@@ -16274,6 +16279,7 @@ interface OptionsConfig extends OptionsComponentExtensions, OptionsSilentConsole
|
|
|
16274
16279
|
astro?: boolean | (OptionsFiles & OptionsOverrides);
|
|
16275
16280
|
comments?: OptionsFiles & OptionsOverrides;
|
|
16276
16281
|
compat?: OptionsFiles;
|
|
16282
|
+
css?: boolean | (OptionsFiles & OptionsOverrides);
|
|
16277
16283
|
cwd?: string;
|
|
16278
16284
|
formatters?: OptionsFormatters | boolean;
|
|
16279
16285
|
gitignore?: FlatGitignoreOptions | boolean;
|