@coderwyd/eslint-config 3.6.0 → 4.0.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/README.md +0 -11
- package/dist/cli.js +11 -11
- package/dist/index.d.ts +1336 -2002
- package/dist/index.js +11 -27
- package/package.json +25 -30
- package/dist/cli.cjs +0 -256
- package/dist/cli.d.cts +0 -2
- package/dist/index.cjs +0 -1936
- package/dist/index.d.cts +0 -15266
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import * as eslint from 'eslint';
|
|
2
1
|
import { Linter } from 'eslint';
|
|
3
2
|
import { ParserOptions } from '@typescript-eslint/parser';
|
|
4
3
|
import { FlatGitignoreOptions } from 'eslint-config-flat-gitignore';
|
|
@@ -2673,7 +2672,7 @@ interface RuleOptions {
|
|
|
2673
2672
|
*/
|
|
2674
2673
|
'react-naming-convention/filename-extension'?: Linter.RuleEntry<ReactNamingConventionFilenameExtension>
|
|
2675
2674
|
/**
|
|
2676
|
-
* enforce destructuring and symmetric naming of 'useState' hook value and setter
|
|
2675
|
+
* enforce destructuring and symmetric naming of 'useState' hook value and setter
|
|
2677
2676
|
* @see https://eslint-react.xyz/docs/rules/naming-convention-use-state
|
|
2678
2677
|
*/
|
|
2679
2678
|
'react-naming-convention/use-state'?: Linter.RuleEntry<[]>
|
|
@@ -2719,7 +2718,7 @@ interface RuleOptions {
|
|
|
2719
2718
|
*/
|
|
2720
2719
|
'react/jsx-no-duplicate-props'?: Linter.RuleEntry<[]>
|
|
2721
2720
|
/**
|
|
2722
|
-
*
|
|
2721
|
+
* marks variables used in JSX as used
|
|
2723
2722
|
* @see https://eslint-react.xyz/docs/rules/use-jsx-vars
|
|
2724
2723
|
*/
|
|
2725
2724
|
'react/jsx-uses-vars'?: Linter.RuleEntry<[]>
|
|
@@ -2853,6 +2852,11 @@ interface RuleOptions {
|
|
|
2853
2852
|
* @see https://eslint-react.xyz/docs/rules/no-missing-component-display-name
|
|
2854
2853
|
*/
|
|
2855
2854
|
'react/no-missing-component-display-name'?: Linter.RuleEntry<[]>
|
|
2855
|
+
/**
|
|
2856
|
+
* require 'displayName' for contexts.
|
|
2857
|
+
* @see https://eslint-react.xyz/docs/rules/no-missing-context-display-name
|
|
2858
|
+
*/
|
|
2859
|
+
'react/no-missing-context-display-name'?: Linter.RuleEntry<[]>
|
|
2856
2860
|
/**
|
|
2857
2861
|
* require 'key' when rendering list
|
|
2858
2862
|
* @see https://eslint-react.xyz/docs/rules/no-missing-key
|
|
@@ -2929,7 +2933,12 @@ interface RuleOptions {
|
|
|
2929
2933
|
*/
|
|
2930
2934
|
'react/no-unused-state'?: Linter.RuleEntry<[]>
|
|
2931
2935
|
/**
|
|
2932
|
-
* disallow
|
|
2936
|
+
* disallow the use of 'useContext'
|
|
2937
|
+
* @see https://eslint-react.xyz/docs/rules/no-use-context
|
|
2938
|
+
*/
|
|
2939
|
+
'react/no-use-context'?: Linter.RuleEntry<[]>
|
|
2940
|
+
/**
|
|
2941
|
+
* disallow useless fragments
|
|
2933
2942
|
* @see https://eslint-react.xyz/docs/rules/no-useless-fragment
|
|
2934
2943
|
*/
|
|
2935
2944
|
'react/no-useless-fragment'?: Linter.RuleEntry<ReactNoUselessFragment>
|
|
@@ -2959,7 +2968,7 @@ interface RuleOptions {
|
|
|
2959
2968
|
*/
|
|
2960
2969
|
'react/prefer-shorthand-fragment'?: Linter.RuleEntry<[]>
|
|
2961
2970
|
/**
|
|
2962
|
-
*
|
|
2971
|
+
* marks variables used in JSX as used
|
|
2963
2972
|
* @see https://eslint-react.xyz/docs/rules/use-jsx-vars
|
|
2964
2973
|
*/
|
|
2965
2974
|
'react/use-jsx-vars'?: Linter.RuleEntry<[]>
|
|
@@ -4093,6 +4102,11 @@ interface RuleOptions {
|
|
|
4093
4102
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-spy-on.md
|
|
4094
4103
|
*/
|
|
4095
4104
|
'test/prefer-spy-on'?: Linter.RuleEntry<[]>
|
|
4105
|
+
/**
|
|
4106
|
+
* enforce using `toBe(true)` and `toBe(false)` over matchers that coerce types to boolean
|
|
4107
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-boolean-matchers.md
|
|
4108
|
+
*/
|
|
4109
|
+
'test/prefer-strict-boolean-matchers'?: Linter.RuleEntry<[]>
|
|
4096
4110
|
/**
|
|
4097
4111
|
* enforce strict equal over equal
|
|
4098
4112
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-strict-equal.md
|
|
@@ -4148,6 +4162,11 @@ interface RuleOptions {
|
|
|
4148
4162
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-local-test-context-for-concurrent-snapshots.md
|
|
4149
4163
|
*/
|
|
4150
4164
|
'test/require-local-test-context-for-concurrent-snapshots'?: Linter.RuleEntry<[]>
|
|
4165
|
+
/**
|
|
4166
|
+
* enforce using type parameters with vitest mock functions
|
|
4167
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-mock-type-parameters.md
|
|
4168
|
+
*/
|
|
4169
|
+
'test/require-mock-type-parameters'?: Linter.RuleEntry<TestRequireMockTypeParameters>
|
|
4151
4170
|
/**
|
|
4152
4171
|
* require toThrow() to be called with an error message
|
|
4153
4172
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-to-throw-message.md
|
|
@@ -4390,7 +4409,7 @@ interface RuleOptions {
|
|
|
4390
4409
|
*/
|
|
4391
4410
|
'ts/no-for-in-array'?: Linter.RuleEntry<[]>
|
|
4392
4411
|
/**
|
|
4393
|
-
* Disallow the use of `eval()`-like
|
|
4412
|
+
* Disallow the use of `eval()`-like functions
|
|
4394
4413
|
* @see https://typescript-eslint.io/rules/no-implied-eval
|
|
4395
4414
|
*/
|
|
4396
4415
|
'ts/no-implied-eval'?: Linter.RuleEntry<[]>
|
|
@@ -4841,702 +4860,642 @@ interface RuleOptions {
|
|
|
4841
4860
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
|
|
4842
4861
|
/**
|
|
4843
4862
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
4844
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4863
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/better-regex.md
|
|
4845
4864
|
*/
|
|
4846
4865
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
|
|
4847
4866
|
/**
|
|
4848
4867
|
* Enforce a specific parameter name in catch clauses.
|
|
4849
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4868
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/catch-error-name.md
|
|
4850
4869
|
*/
|
|
4851
4870
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
|
|
4871
|
+
/**
|
|
4872
|
+
* Enforce consistent assertion style with `node:assert`.
|
|
4873
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-assert.md
|
|
4874
|
+
*/
|
|
4875
|
+
'unicorn/consistent-assert'?: Linter.RuleEntry<[]>
|
|
4876
|
+
/**
|
|
4877
|
+
* Prefer passing `Date` directly to the constructor when cloning.
|
|
4878
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-date-clone.md
|
|
4879
|
+
*/
|
|
4880
|
+
'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>
|
|
4852
4881
|
/**
|
|
4853
4882
|
* Use destructured variables over properties.
|
|
4854
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4883
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-destructuring.md
|
|
4855
4884
|
*/
|
|
4856
4885
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
|
|
4857
4886
|
/**
|
|
4858
4887
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
4859
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4888
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-empty-array-spread.md
|
|
4860
4889
|
*/
|
|
4861
4890
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
|
|
4862
4891
|
/**
|
|
4863
4892
|
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
4864
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4893
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-existence-index-check.md
|
|
4865
4894
|
*/
|
|
4866
4895
|
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
|
|
4867
4896
|
/**
|
|
4868
4897
|
* Move function definitions to the highest possible scope.
|
|
4869
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4898
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/consistent-function-scoping.md
|
|
4870
4899
|
*/
|
|
4871
4900
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
|
|
4872
4901
|
/**
|
|
4873
4902
|
* Enforce correct `Error` subclassing.
|
|
4874
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4903
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/custom-error-definition.md
|
|
4875
4904
|
*/
|
|
4876
4905
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
|
|
4877
4906
|
/**
|
|
4878
4907
|
* Enforce no spaces between braces.
|
|
4879
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4908
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/empty-brace-spaces.md
|
|
4880
4909
|
*/
|
|
4881
4910
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
|
|
4882
4911
|
/**
|
|
4883
4912
|
* Enforce passing a `message` value when creating a built-in error.
|
|
4884
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4913
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/error-message.md
|
|
4885
4914
|
*/
|
|
4886
4915
|
'unicorn/error-message'?: Linter.RuleEntry<[]>
|
|
4887
4916
|
/**
|
|
4888
4917
|
* Require escape sequences to use uppercase values.
|
|
4889
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4918
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/escape-case.md
|
|
4890
4919
|
*/
|
|
4891
4920
|
'unicorn/escape-case'?: Linter.RuleEntry<[]>
|
|
4892
4921
|
/**
|
|
4893
4922
|
* Add expiration conditions to TODO comments.
|
|
4894
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4923
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/expiring-todo-comments.md
|
|
4895
4924
|
*/
|
|
4896
4925
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
|
|
4897
4926
|
/**
|
|
4898
4927
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
4899
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4928
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/explicit-length-check.md
|
|
4900
4929
|
*/
|
|
4901
4930
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
|
|
4902
4931
|
/**
|
|
4903
4932
|
* Enforce a case style for filenames.
|
|
4904
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4933
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/filename-case.md
|
|
4905
4934
|
*/
|
|
4906
4935
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
|
|
4907
|
-
/**
|
|
4908
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#import-index
|
|
4909
|
-
* @deprecated
|
|
4910
|
-
*/
|
|
4911
|
-
'unicorn/import-index'?: Linter.RuleEntry<[]>
|
|
4912
4936
|
/**
|
|
4913
4937
|
* Enforce specific import styles per module.
|
|
4914
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4938
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/import-style.md
|
|
4915
4939
|
*/
|
|
4916
4940
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
|
|
4917
4941
|
/**
|
|
4918
4942
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
4919
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4943
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/new-for-builtins.md
|
|
4920
4944
|
*/
|
|
4921
4945
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
|
|
4922
4946
|
/**
|
|
4923
4947
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
4924
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4948
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-abusive-eslint-disable.md
|
|
4925
4949
|
*/
|
|
4926
4950
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
|
|
4951
|
+
/**
|
|
4952
|
+
* Disallow recursive access to `this` within getters and setters.
|
|
4953
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-accessor-recursion.md
|
|
4954
|
+
*/
|
|
4955
|
+
'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>
|
|
4927
4956
|
/**
|
|
4928
4957
|
* Disallow anonymous functions and classes as the default export.
|
|
4929
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4958
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-anonymous-default-export.md
|
|
4930
4959
|
*/
|
|
4931
4960
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
|
|
4932
4961
|
/**
|
|
4933
4962
|
* Prevent passing a function reference directly to iterator methods.
|
|
4934
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4963
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-callback-reference.md
|
|
4935
4964
|
*/
|
|
4936
4965
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
|
|
4937
4966
|
/**
|
|
4938
4967
|
* Prefer `for…of` over the `forEach` method.
|
|
4939
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4968
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-for-each.md
|
|
4940
4969
|
*/
|
|
4941
4970
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
|
|
4942
|
-
/**
|
|
4943
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#no-array-instanceof
|
|
4944
|
-
* @deprecated
|
|
4945
|
-
*/
|
|
4946
|
-
'unicorn/no-array-instanceof'?: Linter.RuleEntry<[]>
|
|
4947
4971
|
/**
|
|
4948
4972
|
* Disallow using the `this` argument in array methods.
|
|
4949
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4973
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-method-this-argument.md
|
|
4950
4974
|
*/
|
|
4951
4975
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
|
|
4952
4976
|
/**
|
|
4953
4977
|
* Enforce combining multiple `Array#push()` into one call.
|
|
4954
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4978
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-push-push.md
|
|
4955
4979
|
*/
|
|
4956
4980
|
'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
|
|
4957
4981
|
/**
|
|
4958
4982
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
4959
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4983
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-array-reduce.md
|
|
4960
4984
|
*/
|
|
4961
4985
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
|
|
4962
4986
|
/**
|
|
4963
4987
|
* Disallow member access from await expression.
|
|
4964
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4988
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-await-expression-member.md
|
|
4965
4989
|
*/
|
|
4966
4990
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
|
|
4967
4991
|
/**
|
|
4968
4992
|
* Disallow using `await` in `Promise` method parameters.
|
|
4969
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4993
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-await-in-promise-methods.md
|
|
4970
4994
|
*/
|
|
4971
4995
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
4972
4996
|
/**
|
|
4973
4997
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
4974
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
4998
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-console-spaces.md
|
|
4975
4999
|
*/
|
|
4976
5000
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
|
|
4977
5001
|
/**
|
|
4978
5002
|
* Do not use `document.cookie` directly.
|
|
4979
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5003
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-document-cookie.md
|
|
4980
5004
|
*/
|
|
4981
5005
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
|
|
4982
5006
|
/**
|
|
4983
5007
|
* Disallow empty files.
|
|
4984
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5008
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-empty-file.md
|
|
4985
5009
|
*/
|
|
4986
5010
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
|
|
4987
|
-
/**
|
|
4988
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#no-fn-reference-in-iterator
|
|
4989
|
-
* @deprecated
|
|
4990
|
-
*/
|
|
4991
|
-
'unicorn/no-fn-reference-in-iterator'?: Linter.RuleEntry<[]>
|
|
4992
5011
|
/**
|
|
4993
5012
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
4994
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5013
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-for-loop.md
|
|
4995
5014
|
*/
|
|
4996
5015
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
|
|
4997
5016
|
/**
|
|
4998
5017
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
4999
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5018
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-hex-escape.md
|
|
5000
5019
|
*/
|
|
5001
5020
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
|
|
5002
5021
|
/**
|
|
5003
|
-
*
|
|
5004
|
-
* @
|
|
5022
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/deprecated-rules.md#no-instanceof-array
|
|
5023
|
+
* @deprecated
|
|
5005
5024
|
*/
|
|
5006
5025
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
|
|
5026
|
+
/**
|
|
5027
|
+
* Disallow `instanceof` with built-in objects
|
|
5028
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-instanceof-builtins.md
|
|
5029
|
+
*/
|
|
5030
|
+
'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>
|
|
5007
5031
|
/**
|
|
5008
5032
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
5009
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5033
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-invalid-fetch-options.md
|
|
5010
5034
|
*/
|
|
5011
5035
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
|
|
5012
5036
|
/**
|
|
5013
5037
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
5014
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5038
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-invalid-remove-event-listener.md
|
|
5015
5039
|
*/
|
|
5016
5040
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
|
|
5017
5041
|
/**
|
|
5018
5042
|
* Disallow identifiers starting with `new` or `class`.
|
|
5019
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5043
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-keyword-prefix.md
|
|
5020
5044
|
*/
|
|
5021
5045
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
|
|
5022
5046
|
/**
|
|
5023
5047
|
* Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
5024
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5048
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-length-as-slice-end.md
|
|
5025
5049
|
*/
|
|
5026
5050
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
|
|
5027
5051
|
/**
|
|
5028
5052
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
5029
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5053
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-lonely-if.md
|
|
5030
5054
|
*/
|
|
5031
5055
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
|
|
5032
5056
|
/**
|
|
5033
5057
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
5034
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5058
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-magic-array-flat-depth.md
|
|
5035
5059
|
*/
|
|
5036
5060
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
5061
|
+
/**
|
|
5062
|
+
* Disallow named usage of default import and export.
|
|
5063
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-named-default.md
|
|
5064
|
+
*/
|
|
5065
|
+
'unicorn/no-named-default'?: Linter.RuleEntry<[]>
|
|
5037
5066
|
/**
|
|
5038
5067
|
* Disallow negated conditions.
|
|
5039
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5068
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-negated-condition.md
|
|
5040
5069
|
*/
|
|
5041
5070
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
|
|
5042
5071
|
/**
|
|
5043
5072
|
* Disallow negated expression in equality check.
|
|
5044
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5073
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-negation-in-equality-check.md
|
|
5045
5074
|
*/
|
|
5046
5075
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
|
|
5047
5076
|
/**
|
|
5048
5077
|
* Disallow nested ternary expressions.
|
|
5049
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5078
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-nested-ternary.md
|
|
5050
5079
|
*/
|
|
5051
5080
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
|
|
5052
5081
|
/**
|
|
5053
5082
|
* Disallow `new Array()`.
|
|
5054
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5083
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-new-array.md
|
|
5055
5084
|
*/
|
|
5056
5085
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>
|
|
5057
5086
|
/**
|
|
5058
5087
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
5059
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5088
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-new-buffer.md
|
|
5060
5089
|
*/
|
|
5061
5090
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
|
|
5062
5091
|
/**
|
|
5063
5092
|
* Disallow the use of the `null` literal.
|
|
5064
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5093
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-null.md
|
|
5065
5094
|
*/
|
|
5066
5095
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
|
|
5067
5096
|
/**
|
|
5068
5097
|
* Disallow the use of objects as default parameters.
|
|
5069
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5098
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-object-as-default-parameter.md
|
|
5070
5099
|
*/
|
|
5071
5100
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
|
|
5072
5101
|
/**
|
|
5073
5102
|
* Disallow `process.exit()`.
|
|
5074
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5103
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-process-exit.md
|
|
5075
5104
|
*/
|
|
5076
5105
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
|
|
5077
|
-
/**
|
|
5078
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#no-reduce
|
|
5079
|
-
* @deprecated
|
|
5080
|
-
*/
|
|
5081
|
-
'unicorn/no-reduce'?: Linter.RuleEntry<[]>
|
|
5082
5106
|
/**
|
|
5083
5107
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
5084
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5108
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-single-promise-in-promise-methods.md
|
|
5085
5109
|
*/
|
|
5086
5110
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
5087
5111
|
/**
|
|
5088
5112
|
* Disallow classes that only have static members.
|
|
5089
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5113
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-static-only-class.md
|
|
5090
5114
|
*/
|
|
5091
5115
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
|
|
5092
5116
|
/**
|
|
5093
5117
|
* Disallow `then` property.
|
|
5094
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5118
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-thenable.md
|
|
5095
5119
|
*/
|
|
5096
5120
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>
|
|
5097
5121
|
/**
|
|
5098
5122
|
* Disallow assigning `this` to a variable.
|
|
5099
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5123
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-this-assignment.md
|
|
5100
5124
|
*/
|
|
5101
5125
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
|
|
5102
5126
|
/**
|
|
5103
5127
|
* Disallow comparing `undefined` using `typeof`.
|
|
5104
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5128
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-typeof-undefined.md
|
|
5105
5129
|
*/
|
|
5106
5130
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
|
|
5107
5131
|
/**
|
|
5108
5132
|
* Disallow awaiting non-promise values.
|
|
5109
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5133
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unnecessary-await.md
|
|
5110
5134
|
*/
|
|
5111
5135
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
|
|
5112
5136
|
/**
|
|
5113
5137
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
5114
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5138
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unnecessary-polyfills.md
|
|
5115
5139
|
*/
|
|
5116
5140
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
|
|
5117
5141
|
/**
|
|
5118
5142
|
* Disallow unreadable array destructuring.
|
|
5119
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5143
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unreadable-array-destructuring.md
|
|
5120
5144
|
*/
|
|
5121
5145
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
|
|
5122
5146
|
/**
|
|
5123
5147
|
* Disallow unreadable IIFEs.
|
|
5124
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5148
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unreadable-iife.md
|
|
5125
5149
|
*/
|
|
5126
5150
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
|
|
5127
|
-
/**
|
|
5128
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#no-unsafe-regex
|
|
5129
|
-
* @deprecated
|
|
5130
|
-
*/
|
|
5131
|
-
'unicorn/no-unsafe-regex'?: Linter.RuleEntry<[]>
|
|
5132
5151
|
/**
|
|
5133
5152
|
* Disallow unused object properties.
|
|
5134
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5153
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-unused-properties.md
|
|
5135
5154
|
*/
|
|
5136
5155
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
|
|
5137
5156
|
/**
|
|
5138
5157
|
* Disallow useless fallback when spreading in object literals.
|
|
5139
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5158
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-fallback-in-spread.md
|
|
5140
5159
|
*/
|
|
5141
5160
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
|
|
5142
5161
|
/**
|
|
5143
5162
|
* Disallow useless array length check.
|
|
5144
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5163
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-length-check.md
|
|
5145
5164
|
*/
|
|
5146
5165
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
|
|
5147
5166
|
/**
|
|
5148
5167
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
5149
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5168
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-promise-resolve-reject.md
|
|
5150
5169
|
*/
|
|
5151
5170
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
|
|
5152
5171
|
/**
|
|
5153
5172
|
* Disallow unnecessary spread.
|
|
5154
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5173
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-spread.md
|
|
5155
5174
|
*/
|
|
5156
5175
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
|
|
5157
5176
|
/**
|
|
5158
5177
|
* Disallow useless case in switch statements.
|
|
5159
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5178
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-switch-case.md
|
|
5160
5179
|
*/
|
|
5161
5180
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
|
|
5162
5181
|
/**
|
|
5163
5182
|
* Disallow useless `undefined`.
|
|
5164
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5183
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-useless-undefined.md
|
|
5165
5184
|
*/
|
|
5166
5185
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
|
|
5167
5186
|
/**
|
|
5168
5187
|
* Disallow number literals with zero fractions or dangling dots.
|
|
5169
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5188
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/no-zero-fractions.md
|
|
5170
5189
|
*/
|
|
5171
5190
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
|
|
5172
5191
|
/**
|
|
5173
5192
|
* Enforce proper case for numeric literals.
|
|
5174
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5193
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/number-literal-case.md
|
|
5175
5194
|
*/
|
|
5176
5195
|
'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
|
|
5177
5196
|
/**
|
|
5178
5197
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
5179
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5198
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/numeric-separators-style.md
|
|
5180
5199
|
*/
|
|
5181
5200
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
|
|
5182
5201
|
/**
|
|
5183
5202
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
5184
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5203
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-add-event-listener.md
|
|
5185
5204
|
*/
|
|
5186
5205
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
|
|
5187
5206
|
/**
|
|
5188
5207
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
5189
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5208
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-find.md
|
|
5190
5209
|
*/
|
|
5191
5210
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
|
|
5192
5211
|
/**
|
|
5193
5212
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
5194
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5213
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-flat.md
|
|
5195
5214
|
*/
|
|
5196
5215
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
|
|
5197
5216
|
/**
|
|
5198
5217
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
5199
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5218
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-flat-map.md
|
|
5200
5219
|
*/
|
|
5201
5220
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
|
|
5202
5221
|
/**
|
|
5203
5222
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
5204
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5223
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-index-of.md
|
|
5205
5224
|
*/
|
|
5206
5225
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
|
|
5207
5226
|
/**
|
|
5208
5227
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
5209
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5228
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-array-some.md
|
|
5210
5229
|
*/
|
|
5211
5230
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
|
|
5212
5231
|
/**
|
|
5213
5232
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
5214
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5233
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-at.md
|
|
5215
5234
|
*/
|
|
5216
5235
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
|
|
5217
5236
|
/**
|
|
5218
5237
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
5219
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5238
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-blob-reading-methods.md
|
|
5220
5239
|
*/
|
|
5221
5240
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
|
|
5222
5241
|
/**
|
|
5223
5242
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
5224
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5243
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-code-point.md
|
|
5225
5244
|
*/
|
|
5226
5245
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
|
|
5227
|
-
/**
|
|
5228
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-dataset
|
|
5229
|
-
* @deprecated
|
|
5230
|
-
*/
|
|
5231
|
-
'unicorn/prefer-dataset'?: Linter.RuleEntry<[]>
|
|
5232
5246
|
/**
|
|
5233
5247
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
5234
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5248
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-date-now.md
|
|
5235
5249
|
*/
|
|
5236
5250
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
|
|
5237
5251
|
/**
|
|
5238
5252
|
* Prefer default parameters over reassignment.
|
|
5239
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5253
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-default-parameters.md
|
|
5240
5254
|
*/
|
|
5241
5255
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
|
|
5242
5256
|
/**
|
|
5243
5257
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
5244
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5258
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-append.md
|
|
5245
5259
|
*/
|
|
5246
5260
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
|
|
5247
5261
|
/**
|
|
5248
5262
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
5249
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5263
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-dataset.md
|
|
5250
5264
|
*/
|
|
5251
5265
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
|
|
5252
5266
|
/**
|
|
5253
5267
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
5254
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5268
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-remove.md
|
|
5255
5269
|
*/
|
|
5256
5270
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
|
|
5257
5271
|
/**
|
|
5258
5272
|
* Prefer `.textContent` over `.innerText`.
|
|
5259
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5273
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-dom-node-text-content.md
|
|
5260
5274
|
*/
|
|
5261
5275
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
|
|
5262
|
-
/**
|
|
5263
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-event-key
|
|
5264
|
-
* @deprecated
|
|
5265
|
-
*/
|
|
5266
|
-
'unicorn/prefer-event-key'?: Linter.RuleEntry<[]>
|
|
5267
5276
|
/**
|
|
5268
5277
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
5269
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5278
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-event-target.md
|
|
5270
5279
|
*/
|
|
5271
5280
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
|
|
5272
|
-
/**
|
|
5273
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-exponentiation-operator
|
|
5274
|
-
* @deprecated
|
|
5275
|
-
*/
|
|
5276
|
-
'unicorn/prefer-exponentiation-operator'?: Linter.RuleEntry<[]>
|
|
5277
5281
|
/**
|
|
5278
5282
|
* Prefer `export…from` when re-exporting.
|
|
5279
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5283
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-export-from.md
|
|
5280
5284
|
*/
|
|
5281
5285
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
|
|
5282
|
-
/**
|
|
5283
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-flat-map
|
|
5284
|
-
* @deprecated
|
|
5285
|
-
*/
|
|
5286
|
-
'unicorn/prefer-flat-map'?: Linter.RuleEntry<[]>
|
|
5287
5286
|
/**
|
|
5288
5287
|
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
5289
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5288
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-global-this.md
|
|
5290
5289
|
*/
|
|
5291
5290
|
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
|
|
5292
5291
|
/**
|
|
5293
5292
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
5294
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5293
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-includes.md
|
|
5295
5294
|
*/
|
|
5296
5295
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
|
|
5297
5296
|
/**
|
|
5298
5297
|
* Prefer reading a JSON file as a buffer.
|
|
5299
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5298
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-json-parse-buffer.md
|
|
5300
5299
|
*/
|
|
5301
5300
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
|
|
5302
5301
|
/**
|
|
5303
5302
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
5304
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5303
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-keyboard-event-key.md
|
|
5305
5304
|
*/
|
|
5306
5305
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
|
|
5307
5306
|
/**
|
|
5308
5307
|
* Prefer using a logical operator over a ternary.
|
|
5309
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5308
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-logical-operator-over-ternary.md
|
|
5310
5309
|
*/
|
|
5311
5310
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
|
|
5312
5311
|
/**
|
|
5313
5312
|
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
5314
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5313
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-math-min-max.md
|
|
5315
5314
|
*/
|
|
5316
5315
|
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
|
|
5317
5316
|
/**
|
|
5318
5317
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
5319
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5318
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-math-trunc.md
|
|
5320
5319
|
*/
|
|
5321
5320
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
|
|
5322
5321
|
/**
|
|
5323
5322
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
5324
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5323
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-modern-dom-apis.md
|
|
5325
5324
|
*/
|
|
5326
5325
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
|
|
5327
5326
|
/**
|
|
5328
5327
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
5329
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5328
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-modern-math-apis.md
|
|
5330
5329
|
*/
|
|
5331
5330
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
|
|
5332
5331
|
/**
|
|
5333
5332
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
5334
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5333
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-module.md
|
|
5335
5334
|
*/
|
|
5336
5335
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>
|
|
5337
5336
|
/**
|
|
5338
5337
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
5339
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5338
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-native-coercion-functions.md
|
|
5340
5339
|
*/
|
|
5341
5340
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
|
|
5342
5341
|
/**
|
|
5343
5342
|
* Prefer negative index over `.length - index` when possible.
|
|
5344
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5343
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-negative-index.md
|
|
5345
5344
|
*/
|
|
5346
5345
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
|
|
5347
|
-
/**
|
|
5348
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-node-append
|
|
5349
|
-
* @deprecated
|
|
5350
|
-
*/
|
|
5351
|
-
'unicorn/prefer-node-append'?: Linter.RuleEntry<[]>
|
|
5352
5346
|
/**
|
|
5353
5347
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
5354
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5348
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-node-protocol.md
|
|
5355
5349
|
*/
|
|
5356
5350
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
|
|
5357
|
-
/**
|
|
5358
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-node-remove
|
|
5359
|
-
* @deprecated
|
|
5360
|
-
*/
|
|
5361
|
-
'unicorn/prefer-node-remove'?: Linter.RuleEntry<[]>
|
|
5362
5351
|
/**
|
|
5363
5352
|
* Prefer `Number` static properties over global ones.
|
|
5364
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5353
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-number-properties.md
|
|
5365
5354
|
*/
|
|
5366
5355
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
|
|
5367
5356
|
/**
|
|
5368
5357
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
5369
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5358
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-object-from-entries.md
|
|
5370
5359
|
*/
|
|
5371
5360
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
|
|
5372
|
-
/**
|
|
5373
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-object-has-own
|
|
5374
|
-
* @deprecated
|
|
5375
|
-
*/
|
|
5376
|
-
'unicorn/prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
5377
5361
|
/**
|
|
5378
5362
|
* Prefer omitting the `catch` binding parameter.
|
|
5379
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5363
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-optional-catch-binding.md
|
|
5380
5364
|
*/
|
|
5381
5365
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
|
|
5382
5366
|
/**
|
|
5383
5367
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
5384
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5368
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-prototype-methods.md
|
|
5385
5369
|
*/
|
|
5386
5370
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
|
|
5387
5371
|
/**
|
|
5388
5372
|
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
5389
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5373
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-query-selector.md
|
|
5390
5374
|
*/
|
|
5391
5375
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
|
|
5392
5376
|
/**
|
|
5393
5377
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
5394
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5378
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-reflect-apply.md
|
|
5395
5379
|
*/
|
|
5396
5380
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
|
|
5397
5381
|
/**
|
|
5398
5382
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
5399
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5383
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-regexp-test.md
|
|
5400
5384
|
*/
|
|
5401
5385
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
|
|
5402
|
-
/**
|
|
5403
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-replace-all
|
|
5404
|
-
* @deprecated
|
|
5405
|
-
*/
|
|
5406
|
-
'unicorn/prefer-replace-all'?: Linter.RuleEntry<[]>
|
|
5407
5386
|
/**
|
|
5408
5387
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
5409
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5388
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-set-has.md
|
|
5410
5389
|
*/
|
|
5411
5390
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
|
|
5412
5391
|
/**
|
|
5413
5392
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
5414
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5393
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-set-size.md
|
|
5415
5394
|
*/
|
|
5416
5395
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
|
|
5417
5396
|
/**
|
|
5418
5397
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
5419
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5398
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-spread.md
|
|
5420
5399
|
*/
|
|
5421
5400
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
|
|
5422
|
-
/**
|
|
5423
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-starts-ends-with
|
|
5424
|
-
* @deprecated
|
|
5425
|
-
*/
|
|
5426
|
-
'unicorn/prefer-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
5427
5401
|
/**
|
|
5428
5402
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
5429
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5403
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-raw.md
|
|
5430
5404
|
*/
|
|
5431
5405
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
|
|
5432
5406
|
/**
|
|
5433
5407
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
5434
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5408
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-replace-all.md
|
|
5435
5409
|
*/
|
|
5436
5410
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
|
|
5437
5411
|
/**
|
|
5438
5412
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
5439
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5413
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-slice.md
|
|
5440
5414
|
*/
|
|
5441
5415
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
|
|
5442
5416
|
/**
|
|
5443
5417
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
5444
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5418
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-starts-ends-with.md
|
|
5445
5419
|
*/
|
|
5446
5420
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
5447
5421
|
/**
|
|
5448
5422
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
5449
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5423
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-string-trim-start-end.md
|
|
5450
5424
|
*/
|
|
5451
5425
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
|
|
5452
5426
|
/**
|
|
5453
5427
|
* Prefer using `structuredClone` to create a deep clone.
|
|
5454
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5428
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-structured-clone.md
|
|
5455
5429
|
*/
|
|
5456
5430
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
|
|
5457
5431
|
/**
|
|
5458
5432
|
* Prefer `switch` over multiple `else-if`.
|
|
5459
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5433
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-switch.md
|
|
5460
5434
|
*/
|
|
5461
5435
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
|
|
5462
5436
|
/**
|
|
5463
5437
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
5464
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5438
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-ternary.md
|
|
5465
5439
|
*/
|
|
5466
5440
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
|
|
5467
|
-
/**
|
|
5468
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-text-content
|
|
5469
|
-
* @deprecated
|
|
5470
|
-
*/
|
|
5471
|
-
'unicorn/prefer-text-content'?: Linter.RuleEntry<[]>
|
|
5472
5441
|
/**
|
|
5473
5442
|
* Prefer top-level await over top-level promises and async function calls.
|
|
5474
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5443
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-top-level-await.md
|
|
5475
5444
|
*/
|
|
5476
5445
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
|
|
5477
|
-
/**
|
|
5478
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#prefer-trim-start-end
|
|
5479
|
-
* @deprecated
|
|
5480
|
-
*/
|
|
5481
|
-
'unicorn/prefer-trim-start-end'?: Linter.RuleEntry<[]>
|
|
5482
5446
|
/**
|
|
5483
5447
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
5484
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5448
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prefer-type-error.md
|
|
5485
5449
|
*/
|
|
5486
5450
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
|
|
5487
5451
|
/**
|
|
5488
5452
|
* Prevent abbreviations.
|
|
5489
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5453
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/prevent-abbreviations.md
|
|
5490
5454
|
*/
|
|
5491
5455
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
|
|
5492
|
-
/**
|
|
5493
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.1/docs/deprecated-rules.md#regex-shorthand
|
|
5494
|
-
* @deprecated
|
|
5495
|
-
*/
|
|
5496
|
-
'unicorn/regex-shorthand'?: Linter.RuleEntry<[]>
|
|
5497
5456
|
/**
|
|
5498
5457
|
* Enforce consistent relative URL style.
|
|
5499
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5458
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/relative-url-style.md
|
|
5500
5459
|
*/
|
|
5501
5460
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
|
|
5502
5461
|
/**
|
|
5503
5462
|
* Enforce using the separator argument with `Array#join()`.
|
|
5504
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5463
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-array-join-separator.md
|
|
5505
5464
|
*/
|
|
5506
5465
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
|
|
5507
5466
|
/**
|
|
5508
5467
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
5509
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5468
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-number-to-fixed-digits-argument.md
|
|
5510
5469
|
*/
|
|
5511
5470
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
|
|
5512
5471
|
/**
|
|
5513
5472
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
5514
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5473
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/require-post-message-target-origin.md
|
|
5515
5474
|
*/
|
|
5516
5475
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
|
|
5517
5476
|
/**
|
|
5518
5477
|
* Enforce better string content.
|
|
5519
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5478
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/string-content.md
|
|
5520
5479
|
*/
|
|
5521
5480
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
|
|
5522
5481
|
/**
|
|
5523
5482
|
* Enforce consistent brace style for `case` clauses.
|
|
5524
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5483
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/switch-case-braces.md
|
|
5525
5484
|
*/
|
|
5526
5485
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
|
|
5527
5486
|
/**
|
|
5528
5487
|
* Fix whitespace-insensitive template indentation.
|
|
5529
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5488
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/template-indent.md
|
|
5530
5489
|
*/
|
|
5531
5490
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
|
|
5532
5491
|
/**
|
|
5533
5492
|
* Enforce consistent case for text encoding identifiers.
|
|
5534
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5493
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/text-encoding-identifier-case.md
|
|
5535
5494
|
*/
|
|
5536
5495
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
|
|
5537
5496
|
/**
|
|
5538
5497
|
* Require `new` when creating an error.
|
|
5539
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5498
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v57.0.0/docs/rules/throw-new-error.md
|
|
5540
5499
|
*/
|
|
5541
5500
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
|
|
5542
5501
|
/**
|
|
@@ -9398,11 +9357,25 @@ type PaddingLineBetweenStatements = {
|
|
|
9398
9357
|
// ----- perfectionist/sort-array-includes -----
|
|
9399
9358
|
type PerfectionistSortArrayIncludes = {
|
|
9400
9359
|
|
|
9401
|
-
|
|
9402
|
-
|
|
9403
|
-
|
|
9360
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9361
|
+
|
|
9362
|
+
fallbackSort?: {
|
|
9363
|
+
|
|
9364
|
+
order?: ("asc" | "desc")
|
|
9365
|
+
|
|
9366
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9404
9367
|
[k: string]: unknown | undefined
|
|
9405
|
-
}
|
|
9368
|
+
}
|
|
9369
|
+
|
|
9370
|
+
ignoreCase?: boolean
|
|
9371
|
+
|
|
9372
|
+
alphabet?: string
|
|
9373
|
+
|
|
9374
|
+
locales?: (string | string[])
|
|
9375
|
+
|
|
9376
|
+
order?: ("asc" | "desc")
|
|
9377
|
+
|
|
9378
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9406
9379
|
|
|
9407
9380
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
9408
9381
|
|
|
@@ -9419,7 +9392,13 @@ type PerfectionistSortArrayIncludes = {
|
|
|
9419
9392
|
|
|
9420
9393
|
selector?: ("literal" | "spread")
|
|
9421
9394
|
|
|
9422
|
-
elementNamePattern?:
|
|
9395
|
+
elementNamePattern?: (({
|
|
9396
|
+
pattern?: string
|
|
9397
|
+
flags?: string
|
|
9398
|
+
} | string)[] | ({
|
|
9399
|
+
pattern?: string
|
|
9400
|
+
flags?: string
|
|
9401
|
+
} | string))
|
|
9423
9402
|
}[]
|
|
9424
9403
|
} | {
|
|
9425
9404
|
|
|
@@ -9433,42 +9412,79 @@ type PerfectionistSortArrayIncludes = {
|
|
|
9433
9412
|
|
|
9434
9413
|
selector?: ("literal" | "spread")
|
|
9435
9414
|
|
|
9436
|
-
elementNamePattern?:
|
|
9415
|
+
elementNamePattern?: (({
|
|
9416
|
+
pattern?: string
|
|
9417
|
+
flags?: string
|
|
9418
|
+
} | string)[] | ({
|
|
9419
|
+
pattern?: string
|
|
9420
|
+
flags?: string
|
|
9421
|
+
} | string))
|
|
9437
9422
|
})[]
|
|
9438
9423
|
useConfigurationIf?: {
|
|
9439
|
-
|
|
9424
|
+
|
|
9425
|
+
allNamesMatchPattern?: (({
|
|
9426
|
+
pattern?: string
|
|
9427
|
+
flags?: string
|
|
9428
|
+
} | string)[] | ({
|
|
9429
|
+
pattern?: string
|
|
9430
|
+
flags?: string
|
|
9431
|
+
} | string))
|
|
9440
9432
|
}
|
|
9441
9433
|
|
|
9442
|
-
|
|
9434
|
+
partitionByComment?: (boolean | (({
|
|
9435
|
+
pattern?: string
|
|
9436
|
+
flags?: string
|
|
9437
|
+
} | string)[] | ({
|
|
9438
|
+
pattern?: string
|
|
9439
|
+
flags?: string
|
|
9440
|
+
} | string)) | {
|
|
9441
|
+
block?: (boolean | (({
|
|
9442
|
+
pattern?: string
|
|
9443
|
+
flags?: string
|
|
9444
|
+
} | string)[] | ({
|
|
9445
|
+
pattern?: string
|
|
9446
|
+
flags?: string
|
|
9447
|
+
} | string)))
|
|
9448
|
+
line?: (boolean | (({
|
|
9449
|
+
pattern?: string
|
|
9450
|
+
flags?: string
|
|
9451
|
+
} | string)[] | ({
|
|
9452
|
+
pattern?: string
|
|
9453
|
+
flags?: string
|
|
9454
|
+
} | string)))
|
|
9455
|
+
})
|
|
9443
9456
|
|
|
9444
9457
|
partitionByNewLine?: boolean
|
|
9445
9458
|
|
|
9446
|
-
|
|
9447
|
-
|
|
9448
|
-
ignoreCase?: boolean
|
|
9449
|
-
|
|
9450
|
-
alphabet?: string
|
|
9451
|
-
|
|
9452
|
-
locales?: (string | string[])
|
|
9459
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9453
9460
|
|
|
9454
9461
|
groups?: (string | string[] | {
|
|
9455
9462
|
|
|
9456
9463
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9457
|
-
[k: string]: unknown | undefined
|
|
9458
9464
|
})[]
|
|
9459
|
-
|
|
9460
|
-
order?: ("asc" | "desc")
|
|
9461
9465
|
}[]
|
|
9462
9466
|
// ----- perfectionist/sort-classes -----
|
|
9463
9467
|
type PerfectionistSortClasses = []|[{
|
|
9464
9468
|
|
|
9465
|
-
|
|
9469
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9466
9470
|
|
|
9467
|
-
|
|
9468
|
-
|
|
9469
|
-
|
|
9471
|
+
fallbackSort?: {
|
|
9472
|
+
|
|
9473
|
+
order?: ("asc" | "desc")
|
|
9474
|
+
|
|
9475
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9470
9476
|
[k: string]: unknown | undefined
|
|
9471
|
-
}
|
|
9477
|
+
}
|
|
9478
|
+
|
|
9479
|
+
ignoreCase?: boolean
|
|
9480
|
+
|
|
9481
|
+
alphabet?: string
|
|
9482
|
+
|
|
9483
|
+
locales?: (string | string[])
|
|
9484
|
+
|
|
9485
|
+
order?: ("asc" | "desc")
|
|
9486
|
+
|
|
9487
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9472
9488
|
|
|
9473
9489
|
customGroups?: ({
|
|
9474
9490
|
|
|
@@ -9481,15 +9497,33 @@ type PerfectionistSortClasses = []|[{
|
|
|
9481
9497
|
newlinesInside?: ("always" | "never")
|
|
9482
9498
|
anyOf?: {
|
|
9483
9499
|
|
|
9484
|
-
elementValuePattern?: string
|
|
9485
|
-
|
|
9486
|
-
decoratorNamePattern?: string
|
|
9487
|
-
|
|
9488
9500
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
9489
9501
|
|
|
9490
9502
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
9491
9503
|
|
|
9492
|
-
|
|
9504
|
+
decoratorNamePattern?: (({
|
|
9505
|
+
pattern?: string
|
|
9506
|
+
flags?: string
|
|
9507
|
+
} | string)[] | ({
|
|
9508
|
+
pattern?: string
|
|
9509
|
+
flags?: string
|
|
9510
|
+
} | string))
|
|
9511
|
+
|
|
9512
|
+
elementValuePattern?: (({
|
|
9513
|
+
pattern?: string
|
|
9514
|
+
flags?: string
|
|
9515
|
+
} | string)[] | ({
|
|
9516
|
+
pattern?: string
|
|
9517
|
+
flags?: string
|
|
9518
|
+
} | string))
|
|
9519
|
+
|
|
9520
|
+
elementNamePattern?: (({
|
|
9521
|
+
pattern?: string
|
|
9522
|
+
flags?: string
|
|
9523
|
+
} | string)[] | ({
|
|
9524
|
+
pattern?: string
|
|
9525
|
+
flags?: string
|
|
9526
|
+
} | string))
|
|
9493
9527
|
}[]
|
|
9494
9528
|
} | {
|
|
9495
9529
|
|
|
@@ -9501,47 +9535,97 @@ type PerfectionistSortClasses = []|[{
|
|
|
9501
9535
|
|
|
9502
9536
|
newlinesInside?: ("always" | "never")
|
|
9503
9537
|
|
|
9504
|
-
elementValuePattern?: string
|
|
9505
|
-
|
|
9506
|
-
decoratorNamePattern?: string
|
|
9507
|
-
|
|
9508
9538
|
modifiers?: ("async" | "protected" | "private" | "public" | "static" | "abstract" | "override" | "readonly" | "decorated" | "declare" | "optional")[]
|
|
9509
9539
|
|
|
9510
9540
|
selector?: ("accessor-property" | "index-signature" | "constructor" | "static-block" | "get-method" | "set-method" | "function-property" | "property" | "method")
|
|
9511
9541
|
|
|
9512
|
-
|
|
9542
|
+
decoratorNamePattern?: (({
|
|
9543
|
+
pattern?: string
|
|
9544
|
+
flags?: string
|
|
9545
|
+
} | string)[] | ({
|
|
9546
|
+
pattern?: string
|
|
9547
|
+
flags?: string
|
|
9548
|
+
} | string))
|
|
9549
|
+
|
|
9550
|
+
elementValuePattern?: (({
|
|
9551
|
+
pattern?: string
|
|
9552
|
+
flags?: string
|
|
9553
|
+
} | string)[] | ({
|
|
9554
|
+
pattern?: string
|
|
9555
|
+
flags?: string
|
|
9556
|
+
} | string))
|
|
9557
|
+
|
|
9558
|
+
elementNamePattern?: (({
|
|
9559
|
+
pattern?: string
|
|
9560
|
+
flags?: string
|
|
9561
|
+
} | string)[] | ({
|
|
9562
|
+
pattern?: string
|
|
9563
|
+
flags?: string
|
|
9564
|
+
} | string))
|
|
9513
9565
|
})[]
|
|
9514
9566
|
|
|
9515
|
-
|
|
9567
|
+
ignoreCallbackDependenciesPatterns?: (({
|
|
9568
|
+
pattern?: string
|
|
9569
|
+
flags?: string
|
|
9570
|
+
} | string)[] | ({
|
|
9571
|
+
pattern?: string
|
|
9572
|
+
flags?: string
|
|
9573
|
+
} | string))
|
|
9574
|
+
|
|
9575
|
+
partitionByComment?: (boolean | (({
|
|
9576
|
+
pattern?: string
|
|
9577
|
+
flags?: string
|
|
9578
|
+
} | string)[] | ({
|
|
9579
|
+
pattern?: string
|
|
9580
|
+
flags?: string
|
|
9581
|
+
} | string)) | {
|
|
9582
|
+
block?: (boolean | (({
|
|
9583
|
+
pattern?: string
|
|
9584
|
+
flags?: string
|
|
9585
|
+
} | string)[] | ({
|
|
9586
|
+
pattern?: string
|
|
9587
|
+
flags?: string
|
|
9588
|
+
} | string)))
|
|
9589
|
+
line?: (boolean | (({
|
|
9590
|
+
pattern?: string
|
|
9591
|
+
flags?: string
|
|
9592
|
+
} | string)[] | ({
|
|
9593
|
+
pattern?: string
|
|
9594
|
+
flags?: string
|
|
9595
|
+
} | string)))
|
|
9596
|
+
})
|
|
9516
9597
|
|
|
9517
|
-
|
|
9598
|
+
partitionByNewLine?: boolean
|
|
9518
9599
|
|
|
9519
9600
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9520
9601
|
|
|
9521
|
-
ignoreCase?: boolean
|
|
9522
|
-
|
|
9523
|
-
alphabet?: string
|
|
9524
|
-
|
|
9525
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9526
|
-
|
|
9527
|
-
locales?: (string | string[])
|
|
9528
|
-
|
|
9529
9602
|
groups?: (string | string[] | {
|
|
9530
9603
|
|
|
9531
9604
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9532
|
-
[k: string]: unknown | undefined
|
|
9533
9605
|
})[]
|
|
9534
|
-
|
|
9535
|
-
order?: ("asc" | "desc")
|
|
9536
9606
|
}]
|
|
9537
9607
|
// ----- perfectionist/sort-decorators -----
|
|
9538
9608
|
type PerfectionistSortDecorators = []|[{
|
|
9539
9609
|
|
|
9540
|
-
|
|
9541
|
-
|
|
9542
|
-
|
|
9610
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9611
|
+
|
|
9612
|
+
fallbackSort?: {
|
|
9613
|
+
|
|
9614
|
+
order?: ("asc" | "desc")
|
|
9615
|
+
|
|
9616
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9543
9617
|
[k: string]: unknown | undefined
|
|
9544
|
-
}
|
|
9618
|
+
}
|
|
9619
|
+
|
|
9620
|
+
ignoreCase?: boolean
|
|
9621
|
+
|
|
9622
|
+
alphabet?: string
|
|
9623
|
+
|
|
9624
|
+
locales?: (string | string[])
|
|
9625
|
+
|
|
9626
|
+
order?: ("asc" | "desc")
|
|
9627
|
+
|
|
9628
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9545
9629
|
|
|
9546
9630
|
sortOnParameters?: boolean
|
|
9547
9631
|
|
|
@@ -9553,109 +9637,258 @@ type PerfectionistSortDecorators = []|[{
|
|
|
9553
9637
|
|
|
9554
9638
|
sortOnClasses?: boolean
|
|
9555
9639
|
|
|
9556
|
-
|
|
9640
|
+
partitionByComment?: (boolean | (({
|
|
9641
|
+
pattern?: string
|
|
9642
|
+
flags?: string
|
|
9643
|
+
} | string)[] | ({
|
|
9644
|
+
pattern?: string
|
|
9645
|
+
flags?: string
|
|
9646
|
+
} | string)) | {
|
|
9647
|
+
block?: (boolean | (({
|
|
9648
|
+
pattern?: string
|
|
9649
|
+
flags?: string
|
|
9650
|
+
} | string)[] | ({
|
|
9651
|
+
pattern?: string
|
|
9652
|
+
flags?: string
|
|
9653
|
+
} | string)))
|
|
9654
|
+
line?: (boolean | (({
|
|
9655
|
+
pattern?: string
|
|
9656
|
+
flags?: string
|
|
9657
|
+
} | string)[] | ({
|
|
9658
|
+
pattern?: string
|
|
9659
|
+
flags?: string
|
|
9660
|
+
} | string)))
|
|
9661
|
+
})
|
|
9557
9662
|
|
|
9558
9663
|
customGroups?: {
|
|
9559
9664
|
[k: string]: (string | string[]) | undefined
|
|
9560
9665
|
}
|
|
9561
9666
|
|
|
9562
|
-
ignoreCase?: boolean
|
|
9563
|
-
|
|
9564
|
-
alphabet?: string
|
|
9565
|
-
|
|
9566
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9567
|
-
|
|
9568
|
-
locales?: (string | string[])
|
|
9569
|
-
|
|
9570
9667
|
groups?: (string | string[] | {
|
|
9571
9668
|
|
|
9572
9669
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9573
|
-
[k: string]: unknown | undefined
|
|
9574
9670
|
})[]
|
|
9575
|
-
|
|
9576
|
-
order?: ("asc" | "desc")
|
|
9577
9671
|
}]
|
|
9578
9672
|
// ----- perfectionist/sort-enums -----
|
|
9579
9673
|
type PerfectionistSortEnums = []|[{
|
|
9580
9674
|
|
|
9581
|
-
|
|
9582
|
-
|
|
9583
|
-
|
|
9675
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9676
|
+
|
|
9677
|
+
fallbackSort?: {
|
|
9678
|
+
|
|
9679
|
+
order?: ("asc" | "desc")
|
|
9680
|
+
|
|
9681
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9584
9682
|
[k: string]: unknown | undefined
|
|
9585
|
-
}
|
|
9683
|
+
}
|
|
9684
|
+
|
|
9685
|
+
ignoreCase?: boolean
|
|
9686
|
+
|
|
9687
|
+
alphabet?: string
|
|
9688
|
+
|
|
9689
|
+
locales?: (string | string[])
|
|
9690
|
+
|
|
9691
|
+
order?: ("asc" | "desc")
|
|
9692
|
+
|
|
9693
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9586
9694
|
|
|
9587
9695
|
forceNumericSort?: boolean
|
|
9696
|
+
customGroups?: ({
|
|
9697
|
+
[k: string]: (string | string[]) | undefined
|
|
9698
|
+
} | ({
|
|
9699
|
+
|
|
9700
|
+
groupName?: string
|
|
9701
|
+
|
|
9702
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9703
|
+
|
|
9704
|
+
order?: ("desc" | "asc")
|
|
9705
|
+
|
|
9706
|
+
newlinesInside?: ("always" | "never")
|
|
9707
|
+
anyOf?: {
|
|
9708
|
+
|
|
9709
|
+
elementValuePattern?: (({
|
|
9710
|
+
pattern?: string
|
|
9711
|
+
flags?: string
|
|
9712
|
+
} | string)[] | ({
|
|
9713
|
+
pattern?: string
|
|
9714
|
+
flags?: string
|
|
9715
|
+
} | string))
|
|
9716
|
+
|
|
9717
|
+
elementNamePattern?: (({
|
|
9718
|
+
pattern?: string
|
|
9719
|
+
flags?: string
|
|
9720
|
+
} | string)[] | ({
|
|
9721
|
+
pattern?: string
|
|
9722
|
+
flags?: string
|
|
9723
|
+
} | string))
|
|
9724
|
+
}[]
|
|
9725
|
+
} | {
|
|
9726
|
+
|
|
9727
|
+
groupName?: string
|
|
9728
|
+
|
|
9729
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
9730
|
+
|
|
9731
|
+
order?: ("desc" | "asc")
|
|
9732
|
+
|
|
9733
|
+
newlinesInside?: ("always" | "never")
|
|
9734
|
+
|
|
9735
|
+
elementValuePattern?: (({
|
|
9736
|
+
pattern?: string
|
|
9737
|
+
flags?: string
|
|
9738
|
+
} | string)[] | ({
|
|
9739
|
+
pattern?: string
|
|
9740
|
+
flags?: string
|
|
9741
|
+
} | string))
|
|
9742
|
+
|
|
9743
|
+
elementNamePattern?: (({
|
|
9744
|
+
pattern?: string
|
|
9745
|
+
flags?: string
|
|
9746
|
+
} | string)[] | ({
|
|
9747
|
+
pattern?: string
|
|
9748
|
+
flags?: string
|
|
9749
|
+
} | string))
|
|
9750
|
+
})[])
|
|
9588
9751
|
|
|
9589
9752
|
sortByValue?: boolean
|
|
9590
9753
|
|
|
9754
|
+
partitionByComment?: (boolean | (({
|
|
9755
|
+
pattern?: string
|
|
9756
|
+
flags?: string
|
|
9757
|
+
} | string)[] | ({
|
|
9758
|
+
pattern?: string
|
|
9759
|
+
flags?: string
|
|
9760
|
+
} | string)) | {
|
|
9761
|
+
block?: (boolean | (({
|
|
9762
|
+
pattern?: string
|
|
9763
|
+
flags?: string
|
|
9764
|
+
} | string)[] | ({
|
|
9765
|
+
pattern?: string
|
|
9766
|
+
flags?: string
|
|
9767
|
+
} | string)))
|
|
9768
|
+
line?: (boolean | (({
|
|
9769
|
+
pattern?: string
|
|
9770
|
+
flags?: string
|
|
9771
|
+
} | string)[] | ({
|
|
9772
|
+
pattern?: string
|
|
9773
|
+
flags?: string
|
|
9774
|
+
} | string)))
|
|
9775
|
+
})
|
|
9776
|
+
|
|
9591
9777
|
partitionByNewLine?: boolean
|
|
9592
9778
|
|
|
9779
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9780
|
+
|
|
9781
|
+
groups?: (string | string[] | {
|
|
9782
|
+
|
|
9783
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9784
|
+
})[]
|
|
9785
|
+
}]
|
|
9786
|
+
// ----- perfectionist/sort-exports -----
|
|
9787
|
+
type PerfectionistSortExports = []|[{
|
|
9788
|
+
|
|
9593
9789
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9594
9790
|
|
|
9791
|
+
fallbackSort?: {
|
|
9792
|
+
|
|
9793
|
+
order?: ("asc" | "desc")
|
|
9794
|
+
|
|
9795
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9796
|
+
[k: string]: unknown | undefined
|
|
9797
|
+
}
|
|
9798
|
+
|
|
9595
9799
|
ignoreCase?: boolean
|
|
9596
9800
|
|
|
9597
9801
|
alphabet?: string
|
|
9598
9802
|
|
|
9599
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9600
|
-
|
|
9601
9803
|
locales?: (string | string[])
|
|
9602
9804
|
|
|
9603
9805
|
order?: ("asc" | "desc")
|
|
9604
|
-
}]
|
|
9605
|
-
// ----- perfectionist/sort-exports -----
|
|
9606
|
-
type PerfectionistSortExports = []|[{
|
|
9607
9806
|
|
|
9608
|
-
|
|
9609
|
-
block?: (string[] | boolean | string)
|
|
9610
|
-
line?: (string[] | boolean | string)
|
|
9611
|
-
[k: string]: unknown | undefined
|
|
9612
|
-
})
|
|
9807
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9613
9808
|
|
|
9614
9809
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9615
9810
|
|
|
9811
|
+
partitionByComment?: (boolean | (({
|
|
9812
|
+
pattern?: string
|
|
9813
|
+
flags?: string
|
|
9814
|
+
} | string)[] | ({
|
|
9815
|
+
pattern?: string
|
|
9816
|
+
flags?: string
|
|
9817
|
+
} | string)) | {
|
|
9818
|
+
block?: (boolean | (({
|
|
9819
|
+
pattern?: string
|
|
9820
|
+
flags?: string
|
|
9821
|
+
} | string)[] | ({
|
|
9822
|
+
pattern?: string
|
|
9823
|
+
flags?: string
|
|
9824
|
+
} | string)))
|
|
9825
|
+
line?: (boolean | (({
|
|
9826
|
+
pattern?: string
|
|
9827
|
+
flags?: string
|
|
9828
|
+
} | string)[] | ({
|
|
9829
|
+
pattern?: string
|
|
9830
|
+
flags?: string
|
|
9831
|
+
} | string)))
|
|
9832
|
+
})
|
|
9833
|
+
|
|
9616
9834
|
partitionByNewLine?: boolean
|
|
9835
|
+
}]
|
|
9836
|
+
// ----- perfectionist/sort-heritage-clauses -----
|
|
9837
|
+
type PerfectionistSortHeritageClauses = []|[{
|
|
9617
9838
|
|
|
9618
9839
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9619
9840
|
|
|
9841
|
+
fallbackSort?: {
|
|
9842
|
+
|
|
9843
|
+
order?: ("asc" | "desc")
|
|
9844
|
+
|
|
9845
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9846
|
+
[k: string]: unknown | undefined
|
|
9847
|
+
}
|
|
9848
|
+
|
|
9620
9849
|
ignoreCase?: boolean
|
|
9621
9850
|
|
|
9622
9851
|
alphabet?: string
|
|
9623
9852
|
|
|
9624
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9625
|
-
|
|
9626
9853
|
locales?: (string | string[])
|
|
9627
9854
|
|
|
9628
9855
|
order?: ("asc" | "desc")
|
|
9629
|
-
}]
|
|
9630
|
-
// ----- perfectionist/sort-heritage-clauses -----
|
|
9631
|
-
type PerfectionistSortHeritageClauses = []|[{
|
|
9632
9856
|
|
|
9633
|
-
|
|
9857
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9634
9858
|
|
|
9635
9859
|
customGroups?: {
|
|
9636
9860
|
[k: string]: (string | string[]) | undefined
|
|
9637
9861
|
}
|
|
9638
9862
|
|
|
9639
|
-
ignoreCase?: boolean
|
|
9640
|
-
|
|
9641
|
-
alphabet?: string
|
|
9642
|
-
|
|
9643
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9644
|
-
|
|
9645
|
-
locales?: (string | string[])
|
|
9646
|
-
|
|
9647
9863
|
groups?: (string | string[] | {
|
|
9648
9864
|
|
|
9649
9865
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9650
|
-
[k: string]: unknown | undefined
|
|
9651
9866
|
})[]
|
|
9652
|
-
|
|
9653
|
-
order?: ("asc" | "desc")
|
|
9654
9867
|
}]
|
|
9655
9868
|
// ----- perfectionist/sort-imports -----
|
|
9656
9869
|
type PerfectionistSortImports = []|[_PerfectionistSortImportsSortImports]
|
|
9657
9870
|
type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLengthRequiresLineLengthType & {
|
|
9658
9871
|
|
|
9872
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9873
|
+
|
|
9874
|
+
fallbackSort?: {
|
|
9875
|
+
|
|
9876
|
+
order?: ("asc" | "desc")
|
|
9877
|
+
|
|
9878
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9879
|
+
[k: string]: unknown | undefined
|
|
9880
|
+
}
|
|
9881
|
+
|
|
9882
|
+
ignoreCase?: boolean
|
|
9883
|
+
|
|
9884
|
+
alphabet?: string
|
|
9885
|
+
|
|
9886
|
+
locales?: (string | string[])
|
|
9887
|
+
|
|
9888
|
+
order?: ("asc" | "desc")
|
|
9889
|
+
|
|
9890
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9891
|
+
|
|
9659
9892
|
customGroups?: {
|
|
9660
9893
|
|
|
9661
9894
|
value?: {
|
|
@@ -9667,14 +9900,6 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9667
9900
|
}
|
|
9668
9901
|
}
|
|
9669
9902
|
|
|
9670
|
-
partitionByComment?: (string[] | boolean | string | {
|
|
9671
|
-
block?: (string[] | boolean | string)
|
|
9672
|
-
line?: (string[] | boolean | string)
|
|
9673
|
-
[k: string]: unknown | undefined
|
|
9674
|
-
})
|
|
9675
|
-
|
|
9676
|
-
internalPattern?: string[]
|
|
9677
|
-
|
|
9678
9903
|
maxLineLength?: number
|
|
9679
9904
|
|
|
9680
9905
|
sortSideEffects?: boolean
|
|
@@ -9683,27 +9908,45 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
9683
9908
|
|
|
9684
9909
|
tsconfigRootDir?: string
|
|
9685
9910
|
|
|
9686
|
-
|
|
9911
|
+
partitionByComment?: (boolean | (({
|
|
9912
|
+
pattern?: string
|
|
9913
|
+
flags?: string
|
|
9914
|
+
} | string)[] | ({
|
|
9915
|
+
pattern?: string
|
|
9916
|
+
flags?: string
|
|
9917
|
+
} | string)) | {
|
|
9918
|
+
block?: (boolean | (({
|
|
9919
|
+
pattern?: string
|
|
9920
|
+
flags?: string
|
|
9921
|
+
} | string)[] | ({
|
|
9922
|
+
pattern?: string
|
|
9923
|
+
flags?: string
|
|
9924
|
+
} | string)))
|
|
9925
|
+
line?: (boolean | (({
|
|
9926
|
+
pattern?: string
|
|
9927
|
+
flags?: string
|
|
9928
|
+
} | string)[] | ({
|
|
9929
|
+
pattern?: string
|
|
9930
|
+
flags?: string
|
|
9931
|
+
} | string)))
|
|
9932
|
+
})
|
|
9687
9933
|
|
|
9688
|
-
|
|
9934
|
+
partitionByNewLine?: boolean
|
|
9689
9935
|
|
|
9690
9936
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9691
9937
|
|
|
9692
|
-
|
|
9693
|
-
|
|
9694
|
-
|
|
9695
|
-
|
|
9696
|
-
|
|
9697
|
-
|
|
9698
|
-
|
|
9938
|
+
internalPattern?: (({
|
|
9939
|
+
pattern?: string
|
|
9940
|
+
flags?: string
|
|
9941
|
+
} | string)[] | ({
|
|
9942
|
+
pattern?: string
|
|
9943
|
+
flags?: string
|
|
9944
|
+
} | string))
|
|
9699
9945
|
|
|
9700
9946
|
groups?: (string | string[] | {
|
|
9701
9947
|
|
|
9702
9948
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9703
|
-
[k: string]: unknown | undefined
|
|
9704
9949
|
})[]
|
|
9705
|
-
|
|
9706
|
-
order?: ("asc" | "desc")
|
|
9707
9950
|
})
|
|
9708
9951
|
type _PerfectionistSortImportsMaxLineLengthRequiresLineLengthType = ({
|
|
9709
9952
|
[k: string]: unknown | undefined
|
|
@@ -9715,17 +9958,25 @@ interface _PerfectionistSortImports_IsLineLength {
|
|
|
9715
9958
|
// ----- perfectionist/sort-interfaces -----
|
|
9716
9959
|
type PerfectionistSortInterfaces = {
|
|
9717
9960
|
|
|
9718
|
-
|
|
9719
|
-
useConfigurationIf?: {
|
|
9720
|
-
allNamesMatchPattern?: string
|
|
9721
|
-
declarationMatchesPattern?: string
|
|
9722
|
-
}
|
|
9961
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9723
9962
|
|
|
9724
|
-
|
|
9725
|
-
|
|
9726
|
-
|
|
9963
|
+
fallbackSort?: {
|
|
9964
|
+
|
|
9965
|
+
order?: ("asc" | "desc")
|
|
9966
|
+
|
|
9967
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9727
9968
|
[k: string]: unknown | undefined
|
|
9728
|
-
}
|
|
9969
|
+
}
|
|
9970
|
+
|
|
9971
|
+
ignoreCase?: boolean
|
|
9972
|
+
|
|
9973
|
+
alphabet?: string
|
|
9974
|
+
|
|
9975
|
+
locales?: (string | string[])
|
|
9976
|
+
|
|
9977
|
+
order?: ("asc" | "desc")
|
|
9978
|
+
|
|
9979
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9729
9980
|
customGroups?: ({
|
|
9730
9981
|
[k: string]: (string | string[]) | undefined
|
|
9731
9982
|
} | ({
|
|
@@ -9743,7 +9994,13 @@ type PerfectionistSortInterfaces = {
|
|
|
9743
9994
|
|
|
9744
9995
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9745
9996
|
|
|
9746
|
-
elementNamePattern?:
|
|
9997
|
+
elementNamePattern?: (({
|
|
9998
|
+
pattern?: string
|
|
9999
|
+
flags?: string
|
|
10000
|
+
} | string)[] | ({
|
|
10001
|
+
pattern?: string
|
|
10002
|
+
flags?: string
|
|
10003
|
+
} | string))
|
|
9747
10004
|
}[]
|
|
9748
10005
|
} | {
|
|
9749
10006
|
|
|
@@ -9759,122 +10016,317 @@ type PerfectionistSortInterfaces = {
|
|
|
9759
10016
|
|
|
9760
10017
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
9761
10018
|
|
|
9762
|
-
elementNamePattern?:
|
|
10019
|
+
elementNamePattern?: (({
|
|
10020
|
+
pattern?: string
|
|
10021
|
+
flags?: string
|
|
10022
|
+
} | string)[] | ({
|
|
10023
|
+
pattern?: string
|
|
10024
|
+
flags?: string
|
|
10025
|
+
} | string))
|
|
9763
10026
|
})[])
|
|
10027
|
+
useConfigurationIf?: {
|
|
10028
|
+
|
|
10029
|
+
allNamesMatchPattern?: (({
|
|
10030
|
+
pattern?: string
|
|
10031
|
+
flags?: string
|
|
10032
|
+
} | string)[] | ({
|
|
10033
|
+
pattern?: string
|
|
10034
|
+
flags?: string
|
|
10035
|
+
} | string))
|
|
10036
|
+
|
|
10037
|
+
declarationMatchesPattern?: (({
|
|
10038
|
+
pattern?: string
|
|
10039
|
+
flags?: string
|
|
10040
|
+
} | string)[] | ({
|
|
10041
|
+
pattern?: string
|
|
10042
|
+
flags?: string
|
|
10043
|
+
} | string))
|
|
10044
|
+
}
|
|
9764
10045
|
|
|
9765
10046
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
9766
10047
|
|
|
9767
|
-
|
|
10048
|
+
partitionByComment?: (boolean | (({
|
|
10049
|
+
pattern?: string
|
|
10050
|
+
flags?: string
|
|
10051
|
+
} | string)[] | ({
|
|
10052
|
+
pattern?: string
|
|
10053
|
+
flags?: string
|
|
10054
|
+
} | string)) | {
|
|
10055
|
+
block?: (boolean | (({
|
|
10056
|
+
pattern?: string
|
|
10057
|
+
flags?: string
|
|
10058
|
+
} | string)[] | ({
|
|
10059
|
+
pattern?: string
|
|
10060
|
+
flags?: string
|
|
10061
|
+
} | string)))
|
|
10062
|
+
line?: (boolean | (({
|
|
10063
|
+
pattern?: string
|
|
10064
|
+
flags?: string
|
|
10065
|
+
} | string)[] | ({
|
|
10066
|
+
pattern?: string
|
|
10067
|
+
flags?: string
|
|
10068
|
+
} | string)))
|
|
10069
|
+
})
|
|
9768
10070
|
|
|
9769
10071
|
partitionByNewLine?: boolean
|
|
9770
10072
|
|
|
9771
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9772
|
-
|
|
9773
10073
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9774
10074
|
|
|
9775
|
-
|
|
9776
|
-
|
|
9777
|
-
|
|
9778
|
-
|
|
9779
|
-
|
|
10075
|
+
ignorePattern?: (({
|
|
10076
|
+
pattern?: string
|
|
10077
|
+
flags?: string
|
|
10078
|
+
} | string)[] | ({
|
|
10079
|
+
pattern?: string
|
|
10080
|
+
flags?: string
|
|
10081
|
+
} | string))
|
|
9780
10082
|
|
|
9781
10083
|
groups?: (string | string[] | {
|
|
9782
10084
|
|
|
9783
10085
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9784
|
-
[k: string]: unknown | undefined
|
|
9785
10086
|
})[]
|
|
9786
|
-
|
|
9787
|
-
order?: ("asc" | "desc")
|
|
9788
10087
|
}[]
|
|
9789
10088
|
// ----- perfectionist/sort-intersection-types -----
|
|
9790
10089
|
type PerfectionistSortIntersectionTypes = []|[{
|
|
9791
10090
|
|
|
9792
|
-
partitionByComment?: (string[] | boolean | string | {
|
|
9793
|
-
block?: (string[] | boolean | string)
|
|
9794
|
-
line?: (string[] | boolean | string)
|
|
9795
|
-
[k: string]: unknown | undefined
|
|
9796
|
-
})
|
|
9797
|
-
|
|
9798
|
-
partitionByNewLine?: boolean
|
|
9799
|
-
|
|
9800
10091
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9801
10092
|
|
|
9802
|
-
|
|
10093
|
+
fallbackSort?: {
|
|
10094
|
+
|
|
10095
|
+
order?: ("asc" | "desc")
|
|
10096
|
+
|
|
10097
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10098
|
+
[k: string]: unknown | undefined
|
|
10099
|
+
}
|
|
9803
10100
|
|
|
9804
10101
|
ignoreCase?: boolean
|
|
9805
10102
|
|
|
9806
10103
|
alphabet?: string
|
|
9807
10104
|
|
|
9808
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9809
|
-
|
|
9810
10105
|
locales?: (string | string[])
|
|
9811
10106
|
|
|
10107
|
+
order?: ("asc" | "desc")
|
|
10108
|
+
|
|
10109
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10110
|
+
|
|
10111
|
+
partitionByComment?: (boolean | (({
|
|
10112
|
+
pattern?: string
|
|
10113
|
+
flags?: string
|
|
10114
|
+
} | string)[] | ({
|
|
10115
|
+
pattern?: string
|
|
10116
|
+
flags?: string
|
|
10117
|
+
} | string)) | {
|
|
10118
|
+
block?: (boolean | (({
|
|
10119
|
+
pattern?: string
|
|
10120
|
+
flags?: string
|
|
10121
|
+
} | string)[] | ({
|
|
10122
|
+
pattern?: string
|
|
10123
|
+
flags?: string
|
|
10124
|
+
} | string)))
|
|
10125
|
+
line?: (boolean | (({
|
|
10126
|
+
pattern?: string
|
|
10127
|
+
flags?: string
|
|
10128
|
+
} | string)[] | ({
|
|
10129
|
+
pattern?: string
|
|
10130
|
+
flags?: string
|
|
10131
|
+
} | string)))
|
|
10132
|
+
})
|
|
10133
|
+
|
|
10134
|
+
partitionByNewLine?: boolean
|
|
10135
|
+
|
|
10136
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10137
|
+
|
|
9812
10138
|
groups?: (string | string[] | {
|
|
9813
10139
|
|
|
9814
10140
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9815
|
-
[k: string]: unknown | undefined
|
|
9816
10141
|
})[]
|
|
9817
|
-
|
|
9818
|
-
order?: ("asc" | "desc")
|
|
9819
10142
|
}]
|
|
9820
10143
|
// ----- perfectionist/sort-jsx-props -----
|
|
9821
|
-
type PerfectionistSortJsxProps =
|
|
9822
|
-
|
|
9823
|
-
ignorePattern?: string[]
|
|
10144
|
+
type PerfectionistSortJsxProps = {
|
|
9824
10145
|
|
|
9825
10146
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9826
10147
|
|
|
9827
|
-
|
|
9828
|
-
|
|
10148
|
+
fallbackSort?: {
|
|
10149
|
+
|
|
10150
|
+
order?: ("asc" | "desc")
|
|
10151
|
+
|
|
10152
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10153
|
+
[k: string]: unknown | undefined
|
|
9829
10154
|
}
|
|
9830
10155
|
|
|
9831
10156
|
ignoreCase?: boolean
|
|
9832
10157
|
|
|
9833
10158
|
alphabet?: string
|
|
9834
10159
|
|
|
9835
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9836
|
-
|
|
9837
10160
|
locales?: (string | string[])
|
|
9838
10161
|
|
|
10162
|
+
order?: ("asc" | "desc")
|
|
10163
|
+
|
|
10164
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10165
|
+
useConfigurationIf?: {
|
|
10166
|
+
|
|
10167
|
+
allNamesMatchPattern?: (({
|
|
10168
|
+
pattern?: string
|
|
10169
|
+
flags?: string
|
|
10170
|
+
} | string)[] | ({
|
|
10171
|
+
pattern?: string
|
|
10172
|
+
flags?: string
|
|
10173
|
+
} | string))
|
|
10174
|
+
|
|
10175
|
+
tagMatchesPattern?: (({
|
|
10176
|
+
pattern?: string
|
|
10177
|
+
flags?: string
|
|
10178
|
+
} | string)[] | ({
|
|
10179
|
+
pattern?: string
|
|
10180
|
+
flags?: string
|
|
10181
|
+
} | string))
|
|
10182
|
+
}
|
|
10183
|
+
|
|
10184
|
+
partitionByNewLine?: boolean
|
|
10185
|
+
|
|
10186
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10187
|
+
|
|
10188
|
+
customGroups?: {
|
|
10189
|
+
[k: string]: (string | string[]) | undefined
|
|
10190
|
+
}
|
|
10191
|
+
|
|
10192
|
+
ignorePattern?: (({
|
|
10193
|
+
pattern?: string
|
|
10194
|
+
flags?: string
|
|
10195
|
+
} | string)[] | ({
|
|
10196
|
+
pattern?: string
|
|
10197
|
+
flags?: string
|
|
10198
|
+
} | string))
|
|
10199
|
+
|
|
9839
10200
|
groups?: (string | string[] | {
|
|
9840
10201
|
|
|
9841
10202
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9842
|
-
[k: string]: unknown | undefined
|
|
9843
10203
|
})[]
|
|
9844
|
-
|
|
9845
|
-
order?: ("asc" | "desc")
|
|
9846
|
-
}]
|
|
10204
|
+
}[]
|
|
9847
10205
|
// ----- perfectionist/sort-maps -----
|
|
9848
|
-
type PerfectionistSortMaps =
|
|
10206
|
+
type PerfectionistSortMaps = {
|
|
9849
10207
|
|
|
9850
|
-
|
|
9851
|
-
|
|
9852
|
-
|
|
10208
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10209
|
+
|
|
10210
|
+
fallbackSort?: {
|
|
10211
|
+
|
|
10212
|
+
order?: ("asc" | "desc")
|
|
10213
|
+
|
|
10214
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9853
10215
|
[k: string]: unknown | undefined
|
|
10216
|
+
}
|
|
10217
|
+
|
|
10218
|
+
ignoreCase?: boolean
|
|
10219
|
+
|
|
10220
|
+
alphabet?: string
|
|
10221
|
+
|
|
10222
|
+
locales?: (string | string[])
|
|
10223
|
+
|
|
10224
|
+
order?: ("asc" | "desc")
|
|
10225
|
+
|
|
10226
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10227
|
+
|
|
10228
|
+
customGroups?: ({
|
|
10229
|
+
|
|
10230
|
+
groupName?: string
|
|
10231
|
+
|
|
10232
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10233
|
+
|
|
10234
|
+
order?: ("desc" | "asc")
|
|
10235
|
+
|
|
10236
|
+
newlinesInside?: ("always" | "never")
|
|
10237
|
+
anyOf?: {
|
|
10238
|
+
|
|
10239
|
+
elementNamePattern?: (({
|
|
10240
|
+
pattern?: string
|
|
10241
|
+
flags?: string
|
|
10242
|
+
} | string)[] | ({
|
|
10243
|
+
pattern?: string
|
|
10244
|
+
flags?: string
|
|
10245
|
+
} | string))
|
|
10246
|
+
}[]
|
|
10247
|
+
} | {
|
|
10248
|
+
|
|
10249
|
+
groupName?: string
|
|
10250
|
+
|
|
10251
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10252
|
+
|
|
10253
|
+
order?: ("desc" | "asc")
|
|
10254
|
+
|
|
10255
|
+
newlinesInside?: ("always" | "never")
|
|
10256
|
+
|
|
10257
|
+
elementNamePattern?: (({
|
|
10258
|
+
pattern?: string
|
|
10259
|
+
flags?: string
|
|
10260
|
+
} | string)[] | ({
|
|
10261
|
+
pattern?: string
|
|
10262
|
+
flags?: string
|
|
10263
|
+
} | string))
|
|
10264
|
+
})[]
|
|
10265
|
+
useConfigurationIf?: {
|
|
10266
|
+
|
|
10267
|
+
allNamesMatchPattern?: (({
|
|
10268
|
+
pattern?: string
|
|
10269
|
+
flags?: string
|
|
10270
|
+
} | string)[] | ({
|
|
10271
|
+
pattern?: string
|
|
10272
|
+
flags?: string
|
|
10273
|
+
} | string))
|
|
10274
|
+
}
|
|
10275
|
+
|
|
10276
|
+
partitionByComment?: (boolean | (({
|
|
10277
|
+
pattern?: string
|
|
10278
|
+
flags?: string
|
|
10279
|
+
} | string)[] | ({
|
|
10280
|
+
pattern?: string
|
|
10281
|
+
flags?: string
|
|
10282
|
+
} | string)) | {
|
|
10283
|
+
block?: (boolean | (({
|
|
10284
|
+
pattern?: string
|
|
10285
|
+
flags?: string
|
|
10286
|
+
} | string)[] | ({
|
|
10287
|
+
pattern?: string
|
|
10288
|
+
flags?: string
|
|
10289
|
+
} | string)))
|
|
10290
|
+
line?: (boolean | (({
|
|
10291
|
+
pattern?: string
|
|
10292
|
+
flags?: string
|
|
10293
|
+
} | string)[] | ({
|
|
10294
|
+
pattern?: string
|
|
10295
|
+
flags?: string
|
|
10296
|
+
} | string)))
|
|
9854
10297
|
})
|
|
9855
10298
|
|
|
9856
10299
|
partitionByNewLine?: boolean
|
|
9857
10300
|
|
|
10301
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10302
|
+
|
|
10303
|
+
groups?: (string | string[] | {
|
|
10304
|
+
|
|
10305
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10306
|
+
})[]
|
|
10307
|
+
}[]
|
|
10308
|
+
// ----- perfectionist/sort-modules -----
|
|
10309
|
+
type PerfectionistSortModules = []|[{
|
|
10310
|
+
|
|
9858
10311
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9859
10312
|
|
|
10313
|
+
fallbackSort?: {
|
|
10314
|
+
|
|
10315
|
+
order?: ("asc" | "desc")
|
|
10316
|
+
|
|
10317
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10318
|
+
[k: string]: unknown | undefined
|
|
10319
|
+
}
|
|
10320
|
+
|
|
9860
10321
|
ignoreCase?: boolean
|
|
9861
10322
|
|
|
9862
10323
|
alphabet?: string
|
|
9863
10324
|
|
|
9864
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9865
|
-
|
|
9866
10325
|
locales?: (string | string[])
|
|
9867
10326
|
|
|
9868
10327
|
order?: ("asc" | "desc")
|
|
9869
|
-
}]
|
|
9870
|
-
// ----- perfectionist/sort-modules -----
|
|
9871
|
-
type PerfectionistSortModules = []|[{
|
|
9872
10328
|
|
|
9873
|
-
|
|
9874
|
-
block?: (string[] | boolean | string)
|
|
9875
|
-
line?: (string[] | boolean | string)
|
|
9876
|
-
[k: string]: unknown | undefined
|
|
9877
|
-
})
|
|
10329
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9878
10330
|
|
|
9879
10331
|
customGroups?: ({
|
|
9880
10332
|
|
|
@@ -9887,13 +10339,25 @@ type PerfectionistSortModules = []|[{
|
|
|
9887
10339
|
newlinesInside?: ("always" | "never")
|
|
9888
10340
|
anyOf?: {
|
|
9889
10341
|
|
|
9890
|
-
decoratorNamePattern?: string
|
|
9891
|
-
|
|
9892
10342
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
9893
10343
|
|
|
9894
10344
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
9895
10345
|
|
|
9896
|
-
|
|
10346
|
+
decoratorNamePattern?: (({
|
|
10347
|
+
pattern?: string
|
|
10348
|
+
flags?: string
|
|
10349
|
+
} | string)[] | ({
|
|
10350
|
+
pattern?: string
|
|
10351
|
+
flags?: string
|
|
10352
|
+
} | string))
|
|
10353
|
+
|
|
10354
|
+
elementNamePattern?: (({
|
|
10355
|
+
pattern?: string
|
|
10356
|
+
flags?: string
|
|
10357
|
+
} | string)[] | ({
|
|
10358
|
+
pattern?: string
|
|
10359
|
+
flags?: string
|
|
10360
|
+
} | string))
|
|
9897
10361
|
}[]
|
|
9898
10362
|
} | {
|
|
9899
10363
|
|
|
@@ -9905,103 +10369,185 @@ type PerfectionistSortModules = []|[{
|
|
|
9905
10369
|
|
|
9906
10370
|
newlinesInside?: ("always" | "never")
|
|
9907
10371
|
|
|
9908
|
-
decoratorNamePattern?: string
|
|
9909
|
-
|
|
9910
10372
|
modifiers?: ("async" | "declare" | "decorated" | "default" | "export")[]
|
|
9911
10373
|
|
|
9912
10374
|
selector?: ("enum" | "function" | "interface" | "type" | "class")
|
|
9913
10375
|
|
|
9914
|
-
|
|
10376
|
+
decoratorNamePattern?: (({
|
|
10377
|
+
pattern?: string
|
|
10378
|
+
flags?: string
|
|
10379
|
+
} | string)[] | ({
|
|
10380
|
+
pattern?: string
|
|
10381
|
+
flags?: string
|
|
10382
|
+
} | string))
|
|
10383
|
+
|
|
10384
|
+
elementNamePattern?: (({
|
|
10385
|
+
pattern?: string
|
|
10386
|
+
flags?: string
|
|
10387
|
+
} | string)[] | ({
|
|
10388
|
+
pattern?: string
|
|
10389
|
+
flags?: string
|
|
10390
|
+
} | string))
|
|
9915
10391
|
})[]
|
|
9916
10392
|
|
|
9917
|
-
|
|
10393
|
+
partitionByComment?: (boolean | (({
|
|
10394
|
+
pattern?: string
|
|
10395
|
+
flags?: string
|
|
10396
|
+
} | string)[] | ({
|
|
10397
|
+
pattern?: string
|
|
10398
|
+
flags?: string
|
|
10399
|
+
} | string)) | {
|
|
10400
|
+
block?: (boolean | (({
|
|
10401
|
+
pattern?: string
|
|
10402
|
+
flags?: string
|
|
10403
|
+
} | string)[] | ({
|
|
10404
|
+
pattern?: string
|
|
10405
|
+
flags?: string
|
|
10406
|
+
} | string)))
|
|
10407
|
+
line?: (boolean | (({
|
|
10408
|
+
pattern?: string
|
|
10409
|
+
flags?: string
|
|
10410
|
+
} | string)[] | ({
|
|
10411
|
+
pattern?: string
|
|
10412
|
+
flags?: string
|
|
10413
|
+
} | string)))
|
|
10414
|
+
})
|
|
9918
10415
|
|
|
9919
|
-
|
|
10416
|
+
partitionByNewLine?: boolean
|
|
9920
10417
|
|
|
9921
10418
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9922
10419
|
|
|
9923
|
-
ignoreCase?: boolean
|
|
9924
|
-
|
|
9925
|
-
alphabet?: string
|
|
9926
|
-
|
|
9927
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9928
|
-
|
|
9929
|
-
locales?: (string | string[])
|
|
9930
|
-
|
|
9931
10420
|
groups?: (string | string[] | {
|
|
9932
10421
|
|
|
9933
10422
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
9934
|
-
[k: string]: unknown | undefined
|
|
9935
10423
|
})[]
|
|
9936
|
-
|
|
9937
|
-
order?: ("asc" | "desc")
|
|
9938
10424
|
}]
|
|
9939
10425
|
// ----- perfectionist/sort-named-exports -----
|
|
9940
10426
|
type PerfectionistSortNamedExports = []|[{
|
|
9941
10427
|
|
|
9942
|
-
|
|
9943
|
-
|
|
9944
|
-
|
|
10428
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10429
|
+
|
|
10430
|
+
fallbackSort?: {
|
|
10431
|
+
|
|
10432
|
+
order?: ("asc" | "desc")
|
|
10433
|
+
|
|
10434
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9945
10435
|
[k: string]: unknown | undefined
|
|
9946
|
-
}
|
|
10436
|
+
}
|
|
10437
|
+
|
|
10438
|
+
ignoreCase?: boolean
|
|
10439
|
+
|
|
10440
|
+
alphabet?: string
|
|
10441
|
+
|
|
10442
|
+
locales?: (string | string[])
|
|
10443
|
+
|
|
10444
|
+
order?: ("asc" | "desc")
|
|
10445
|
+
|
|
10446
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9947
10447
|
|
|
9948
10448
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9949
10449
|
|
|
10450
|
+
ignoreAlias?: boolean
|
|
10451
|
+
|
|
10452
|
+
partitionByComment?: (boolean | (({
|
|
10453
|
+
pattern?: string
|
|
10454
|
+
flags?: string
|
|
10455
|
+
} | string)[] | ({
|
|
10456
|
+
pattern?: string
|
|
10457
|
+
flags?: string
|
|
10458
|
+
} | string)) | {
|
|
10459
|
+
block?: (boolean | (({
|
|
10460
|
+
pattern?: string
|
|
10461
|
+
flags?: string
|
|
10462
|
+
} | string)[] | ({
|
|
10463
|
+
pattern?: string
|
|
10464
|
+
flags?: string
|
|
10465
|
+
} | string)))
|
|
10466
|
+
line?: (boolean | (({
|
|
10467
|
+
pattern?: string
|
|
10468
|
+
flags?: string
|
|
10469
|
+
} | string)[] | ({
|
|
10470
|
+
pattern?: string
|
|
10471
|
+
flags?: string
|
|
10472
|
+
} | string)))
|
|
10473
|
+
})
|
|
10474
|
+
|
|
9950
10475
|
partitionByNewLine?: boolean
|
|
10476
|
+
}]
|
|
10477
|
+
// ----- perfectionist/sort-named-imports -----
|
|
10478
|
+
type PerfectionistSortNamedImports = []|[{
|
|
9951
10479
|
|
|
9952
10480
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9953
10481
|
|
|
10482
|
+
fallbackSort?: {
|
|
10483
|
+
|
|
10484
|
+
order?: ("asc" | "desc")
|
|
10485
|
+
|
|
10486
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10487
|
+
[k: string]: unknown | undefined
|
|
10488
|
+
}
|
|
10489
|
+
|
|
9954
10490
|
ignoreCase?: boolean
|
|
9955
10491
|
|
|
9956
10492
|
alphabet?: string
|
|
9957
10493
|
|
|
9958
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9959
|
-
|
|
9960
10494
|
locales?: (string | string[])
|
|
9961
10495
|
|
|
9962
10496
|
order?: ("asc" | "desc")
|
|
9963
|
-
}]
|
|
9964
|
-
// ----- perfectionist/sort-named-imports -----
|
|
9965
|
-
type PerfectionistSortNamedImports = []|[{
|
|
9966
10497
|
|
|
9967
|
-
|
|
9968
|
-
block?: (string[] | boolean | string)
|
|
9969
|
-
line?: (string[] | boolean | string)
|
|
9970
|
-
[k: string]: unknown | undefined
|
|
9971
|
-
})
|
|
10498
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
9972
10499
|
|
|
9973
10500
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
9974
10501
|
|
|
9975
10502
|
ignoreAlias?: boolean
|
|
9976
10503
|
|
|
10504
|
+
partitionByComment?: (boolean | (({
|
|
10505
|
+
pattern?: string
|
|
10506
|
+
flags?: string
|
|
10507
|
+
} | string)[] | ({
|
|
10508
|
+
pattern?: string
|
|
10509
|
+
flags?: string
|
|
10510
|
+
} | string)) | {
|
|
10511
|
+
block?: (boolean | (({
|
|
10512
|
+
pattern?: string
|
|
10513
|
+
flags?: string
|
|
10514
|
+
} | string)[] | ({
|
|
10515
|
+
pattern?: string
|
|
10516
|
+
flags?: string
|
|
10517
|
+
} | string)))
|
|
10518
|
+
line?: (boolean | (({
|
|
10519
|
+
pattern?: string
|
|
10520
|
+
flags?: string
|
|
10521
|
+
} | string)[] | ({
|
|
10522
|
+
pattern?: string
|
|
10523
|
+
flags?: string
|
|
10524
|
+
} | string)))
|
|
10525
|
+
})
|
|
10526
|
+
|
|
9977
10527
|
partitionByNewLine?: boolean
|
|
10528
|
+
}]
|
|
10529
|
+
// ----- perfectionist/sort-object-types -----
|
|
10530
|
+
type PerfectionistSortObjectTypes = {
|
|
9978
10531
|
|
|
9979
10532
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
9980
10533
|
|
|
10534
|
+
fallbackSort?: {
|
|
10535
|
+
|
|
10536
|
+
order?: ("asc" | "desc")
|
|
10537
|
+
|
|
10538
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10539
|
+
[k: string]: unknown | undefined
|
|
10540
|
+
}
|
|
10541
|
+
|
|
9981
10542
|
ignoreCase?: boolean
|
|
9982
10543
|
|
|
9983
10544
|
alphabet?: string
|
|
9984
10545
|
|
|
9985
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
9986
|
-
|
|
9987
10546
|
locales?: (string | string[])
|
|
9988
10547
|
|
|
9989
10548
|
order?: ("asc" | "desc")
|
|
9990
|
-
}]
|
|
9991
|
-
// ----- perfectionist/sort-object-types -----
|
|
9992
|
-
type PerfectionistSortObjectTypes = {
|
|
9993
10549
|
|
|
9994
|
-
|
|
9995
|
-
useConfigurationIf?: {
|
|
9996
|
-
allNamesMatchPattern?: string
|
|
9997
|
-
declarationMatchesPattern?: string
|
|
9998
|
-
}
|
|
9999
|
-
|
|
10000
|
-
partitionByComment?: (string[] | boolean | string | {
|
|
10001
|
-
block?: (string[] | boolean | string)
|
|
10002
|
-
line?: (string[] | boolean | string)
|
|
10003
|
-
[k: string]: unknown | undefined
|
|
10004
|
-
})
|
|
10550
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10005
10551
|
customGroups?: ({
|
|
10006
10552
|
[k: string]: (string | string[]) | undefined
|
|
10007
10553
|
} | ({
|
|
@@ -10019,7 +10565,13 @@ type PerfectionistSortObjectTypes = {
|
|
|
10019
10565
|
|
|
10020
10566
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10021
10567
|
|
|
10022
|
-
elementNamePattern?:
|
|
10568
|
+
elementNamePattern?: (({
|
|
10569
|
+
pattern?: string
|
|
10570
|
+
flags?: string
|
|
10571
|
+
} | string)[] | ({
|
|
10572
|
+
pattern?: string
|
|
10573
|
+
flags?: string
|
|
10574
|
+
} | string))
|
|
10023
10575
|
}[]
|
|
10024
10576
|
} | {
|
|
10025
10577
|
|
|
@@ -10035,93 +10587,252 @@ type PerfectionistSortObjectTypes = {
|
|
|
10035
10587
|
|
|
10036
10588
|
selector?: ("index-signature" | "member" | "method" | "multiline" | "property")
|
|
10037
10589
|
|
|
10038
|
-
elementNamePattern?:
|
|
10590
|
+
elementNamePattern?: (({
|
|
10591
|
+
pattern?: string
|
|
10592
|
+
flags?: string
|
|
10593
|
+
} | string)[] | ({
|
|
10594
|
+
pattern?: string
|
|
10595
|
+
flags?: string
|
|
10596
|
+
} | string))
|
|
10039
10597
|
})[])
|
|
10598
|
+
useConfigurationIf?: {
|
|
10599
|
+
|
|
10600
|
+
allNamesMatchPattern?: (({
|
|
10601
|
+
pattern?: string
|
|
10602
|
+
flags?: string
|
|
10603
|
+
} | string)[] | ({
|
|
10604
|
+
pattern?: string
|
|
10605
|
+
flags?: string
|
|
10606
|
+
} | string))
|
|
10607
|
+
|
|
10608
|
+
declarationMatchesPattern?: (({
|
|
10609
|
+
pattern?: string
|
|
10610
|
+
flags?: string
|
|
10611
|
+
} | string)[] | ({
|
|
10612
|
+
pattern?: string
|
|
10613
|
+
flags?: string
|
|
10614
|
+
} | string))
|
|
10615
|
+
}
|
|
10040
10616
|
|
|
10041
10617
|
groupKind?: ("mixed" | "required-first" | "optional-first")
|
|
10042
10618
|
|
|
10043
|
-
|
|
10619
|
+
partitionByComment?: (boolean | (({
|
|
10620
|
+
pattern?: string
|
|
10621
|
+
flags?: string
|
|
10622
|
+
} | string)[] | ({
|
|
10623
|
+
pattern?: string
|
|
10624
|
+
flags?: string
|
|
10625
|
+
} | string)) | {
|
|
10626
|
+
block?: (boolean | (({
|
|
10627
|
+
pattern?: string
|
|
10628
|
+
flags?: string
|
|
10629
|
+
} | string)[] | ({
|
|
10630
|
+
pattern?: string
|
|
10631
|
+
flags?: string
|
|
10632
|
+
} | string)))
|
|
10633
|
+
line?: (boolean | (({
|
|
10634
|
+
pattern?: string
|
|
10635
|
+
flags?: string
|
|
10636
|
+
} | string)[] | ({
|
|
10637
|
+
pattern?: string
|
|
10638
|
+
flags?: string
|
|
10639
|
+
} | string)))
|
|
10640
|
+
})
|
|
10044
10641
|
|
|
10045
10642
|
partitionByNewLine?: boolean
|
|
10046
10643
|
|
|
10047
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10048
|
-
|
|
10049
10644
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10050
10645
|
|
|
10051
|
-
|
|
10052
|
-
|
|
10053
|
-
|
|
10054
|
-
|
|
10055
|
-
|
|
10646
|
+
ignorePattern?: (({
|
|
10647
|
+
pattern?: string
|
|
10648
|
+
flags?: string
|
|
10649
|
+
} | string)[] | ({
|
|
10650
|
+
pattern?: string
|
|
10651
|
+
flags?: string
|
|
10652
|
+
} | string))
|
|
10056
10653
|
|
|
10057
10654
|
groups?: (string | string[] | {
|
|
10058
10655
|
|
|
10059
10656
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10060
|
-
[k: string]: unknown | undefined
|
|
10061
10657
|
})[]
|
|
10062
|
-
|
|
10063
|
-
order?: ("asc" | "desc")
|
|
10064
10658
|
}[]
|
|
10065
10659
|
// ----- perfectionist/sort-objects -----
|
|
10066
10660
|
type PerfectionistSortObjects = {
|
|
10067
10661
|
|
|
10662
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10663
|
+
|
|
10664
|
+
fallbackSort?: {
|
|
10665
|
+
|
|
10666
|
+
order?: ("asc" | "desc")
|
|
10667
|
+
|
|
10668
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10669
|
+
[k: string]: unknown | undefined
|
|
10670
|
+
}
|
|
10671
|
+
|
|
10672
|
+
ignoreCase?: boolean
|
|
10673
|
+
|
|
10674
|
+
alphabet?: string
|
|
10675
|
+
|
|
10676
|
+
locales?: (string | string[])
|
|
10677
|
+
|
|
10678
|
+
order?: ("asc" | "desc")
|
|
10679
|
+
|
|
10680
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10681
|
+
|
|
10068
10682
|
destructuredObjects?: (boolean | {
|
|
10069
10683
|
|
|
10070
10684
|
groups?: boolean
|
|
10071
10685
|
})
|
|
10072
|
-
|
|
10073
|
-
|
|
10686
|
+
customGroups?: ({
|
|
10687
|
+
[k: string]: (string | string[]) | undefined
|
|
10688
|
+
} | ({
|
|
10689
|
+
|
|
10690
|
+
groupName?: string
|
|
10691
|
+
|
|
10692
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10693
|
+
|
|
10694
|
+
order?: ("desc" | "asc")
|
|
10695
|
+
|
|
10696
|
+
newlinesInside?: ("always" | "never")
|
|
10697
|
+
anyOf?: {
|
|
10698
|
+
|
|
10699
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10700
|
+
|
|
10701
|
+
selector?: ("member" | "method" | "multiline" | "property")
|
|
10702
|
+
|
|
10703
|
+
elementValuePattern?: (({
|
|
10704
|
+
pattern?: string
|
|
10705
|
+
flags?: string
|
|
10706
|
+
} | string)[] | ({
|
|
10707
|
+
pattern?: string
|
|
10708
|
+
flags?: string
|
|
10709
|
+
} | string))
|
|
10710
|
+
|
|
10711
|
+
elementNamePattern?: (({
|
|
10712
|
+
pattern?: string
|
|
10713
|
+
flags?: string
|
|
10714
|
+
} | string)[] | ({
|
|
10715
|
+
pattern?: string
|
|
10716
|
+
flags?: string
|
|
10717
|
+
} | string))
|
|
10718
|
+
}[]
|
|
10719
|
+
} | {
|
|
10720
|
+
|
|
10721
|
+
groupName?: string
|
|
10722
|
+
|
|
10723
|
+
type?: ("alphabetical" | "line-length" | "natural" | "unsorted")
|
|
10724
|
+
|
|
10725
|
+
order?: ("desc" | "asc")
|
|
10726
|
+
|
|
10727
|
+
newlinesInside?: ("always" | "never")
|
|
10728
|
+
|
|
10729
|
+
modifiers?: ("optional" | "required" | "multiline")[]
|
|
10730
|
+
|
|
10731
|
+
selector?: ("member" | "method" | "multiline" | "property")
|
|
10732
|
+
|
|
10733
|
+
elementValuePattern?: (({
|
|
10734
|
+
pattern?: string
|
|
10735
|
+
flags?: string
|
|
10736
|
+
} | string)[] | ({
|
|
10737
|
+
pattern?: string
|
|
10738
|
+
flags?: string
|
|
10739
|
+
} | string))
|
|
10740
|
+
|
|
10741
|
+
elementNamePattern?: (({
|
|
10742
|
+
pattern?: string
|
|
10743
|
+
flags?: string
|
|
10744
|
+
} | string)[] | ({
|
|
10745
|
+
pattern?: string
|
|
10746
|
+
flags?: string
|
|
10747
|
+
} | string))
|
|
10748
|
+
})[])
|
|
10074
10749
|
useConfigurationIf?: {
|
|
10075
|
-
|
|
10076
|
-
|
|
10750
|
+
|
|
10751
|
+
allNamesMatchPattern?: (({
|
|
10752
|
+
pattern?: string
|
|
10753
|
+
flags?: string
|
|
10754
|
+
} | string)[] | ({
|
|
10755
|
+
pattern?: string
|
|
10756
|
+
flags?: string
|
|
10757
|
+
} | string))
|
|
10758
|
+
|
|
10759
|
+
callingFunctionNamePattern?: (({
|
|
10760
|
+
pattern?: string
|
|
10761
|
+
flags?: string
|
|
10762
|
+
} | string)[] | ({
|
|
10763
|
+
pattern?: string
|
|
10764
|
+
flags?: string
|
|
10765
|
+
} | string))
|
|
10077
10766
|
}
|
|
10078
10767
|
|
|
10079
|
-
partitionByComment?: (string[] | boolean | string | {
|
|
10080
|
-
block?: (string[] | boolean | string)
|
|
10081
|
-
line?: (string[] | boolean | string)
|
|
10082
|
-
[k: string]: unknown | undefined
|
|
10083
|
-
})
|
|
10084
|
-
|
|
10085
10768
|
destructureOnly?: boolean
|
|
10086
10769
|
|
|
10087
10770
|
objectDeclarations?: boolean
|
|
10088
10771
|
|
|
10089
10772
|
styledComponents?: boolean
|
|
10090
10773
|
|
|
10091
|
-
|
|
10774
|
+
partitionByComment?: (boolean | (({
|
|
10775
|
+
pattern?: string
|
|
10776
|
+
flags?: string
|
|
10777
|
+
} | string)[] | ({
|
|
10778
|
+
pattern?: string
|
|
10779
|
+
flags?: string
|
|
10780
|
+
} | string)) | {
|
|
10781
|
+
block?: (boolean | (({
|
|
10782
|
+
pattern?: string
|
|
10783
|
+
flags?: string
|
|
10784
|
+
} | string)[] | ({
|
|
10785
|
+
pattern?: string
|
|
10786
|
+
flags?: string
|
|
10787
|
+
} | string)))
|
|
10788
|
+
line?: (boolean | (({
|
|
10789
|
+
pattern?: string
|
|
10790
|
+
flags?: string
|
|
10791
|
+
} | string)[] | ({
|
|
10792
|
+
pattern?: string
|
|
10793
|
+
flags?: string
|
|
10794
|
+
} | string)))
|
|
10795
|
+
})
|
|
10092
10796
|
|
|
10093
10797
|
partitionByNewLine?: boolean
|
|
10094
10798
|
|
|
10095
|
-
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10096
|
-
|
|
10097
10799
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10098
10800
|
|
|
10099
|
-
|
|
10100
|
-
|
|
10101
|
-
|
|
10102
|
-
|
|
10103
|
-
|
|
10104
|
-
|
|
10105
|
-
|
|
10106
|
-
|
|
10107
|
-
locales?: (string | string[])
|
|
10801
|
+
ignorePattern?: (({
|
|
10802
|
+
pattern?: string
|
|
10803
|
+
flags?: string
|
|
10804
|
+
} | string)[] | ({
|
|
10805
|
+
pattern?: string
|
|
10806
|
+
flags?: string
|
|
10807
|
+
} | string))
|
|
10108
10808
|
|
|
10109
10809
|
groups?: (string | string[] | {
|
|
10110
10810
|
|
|
10111
10811
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10112
|
-
[k: string]: unknown | undefined
|
|
10113
10812
|
})[]
|
|
10114
|
-
|
|
10115
|
-
order?: ("asc" | "desc")
|
|
10116
10813
|
}[]
|
|
10117
10814
|
// ----- perfectionist/sort-sets -----
|
|
10118
10815
|
type PerfectionistSortSets = {
|
|
10119
10816
|
|
|
10120
|
-
|
|
10121
|
-
|
|
10122
|
-
|
|
10817
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10818
|
+
|
|
10819
|
+
fallbackSort?: {
|
|
10820
|
+
|
|
10821
|
+
order?: ("asc" | "desc")
|
|
10822
|
+
|
|
10823
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10123
10824
|
[k: string]: unknown | undefined
|
|
10124
|
-
}
|
|
10825
|
+
}
|
|
10826
|
+
|
|
10827
|
+
ignoreCase?: boolean
|
|
10828
|
+
|
|
10829
|
+
alphabet?: string
|
|
10830
|
+
|
|
10831
|
+
locales?: (string | string[])
|
|
10832
|
+
|
|
10833
|
+
order?: ("asc" | "desc")
|
|
10834
|
+
|
|
10835
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10125
10836
|
|
|
10126
10837
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10127
10838
|
|
|
@@ -10138,7 +10849,13 @@ type PerfectionistSortSets = {
|
|
|
10138
10849
|
|
|
10139
10850
|
selector?: ("literal" | "spread")
|
|
10140
10851
|
|
|
10141
|
-
elementNamePattern?:
|
|
10852
|
+
elementNamePattern?: (({
|
|
10853
|
+
pattern?: string
|
|
10854
|
+
flags?: string
|
|
10855
|
+
} | string)[] | ({
|
|
10856
|
+
pattern?: string
|
|
10857
|
+
flags?: string
|
|
10858
|
+
} | string))
|
|
10142
10859
|
}[]
|
|
10143
10860
|
} | {
|
|
10144
10861
|
|
|
@@ -10152,100 +10869,182 @@ type PerfectionistSortSets = {
|
|
|
10152
10869
|
|
|
10153
10870
|
selector?: ("literal" | "spread")
|
|
10154
10871
|
|
|
10155
|
-
elementNamePattern?:
|
|
10872
|
+
elementNamePattern?: (({
|
|
10873
|
+
pattern?: string
|
|
10874
|
+
flags?: string
|
|
10875
|
+
} | string)[] | ({
|
|
10876
|
+
pattern?: string
|
|
10877
|
+
flags?: string
|
|
10878
|
+
} | string))
|
|
10156
10879
|
})[]
|
|
10157
10880
|
useConfigurationIf?: {
|
|
10158
|
-
|
|
10881
|
+
|
|
10882
|
+
allNamesMatchPattern?: (({
|
|
10883
|
+
pattern?: string
|
|
10884
|
+
flags?: string
|
|
10885
|
+
} | string)[] | ({
|
|
10886
|
+
pattern?: string
|
|
10887
|
+
flags?: string
|
|
10888
|
+
} | string))
|
|
10159
10889
|
}
|
|
10160
10890
|
|
|
10161
|
-
|
|
10891
|
+
partitionByComment?: (boolean | (({
|
|
10892
|
+
pattern?: string
|
|
10893
|
+
flags?: string
|
|
10894
|
+
} | string)[] | ({
|
|
10895
|
+
pattern?: string
|
|
10896
|
+
flags?: string
|
|
10897
|
+
} | string)) | {
|
|
10898
|
+
block?: (boolean | (({
|
|
10899
|
+
pattern?: string
|
|
10900
|
+
flags?: string
|
|
10901
|
+
} | string)[] | ({
|
|
10902
|
+
pattern?: string
|
|
10903
|
+
flags?: string
|
|
10904
|
+
} | string)))
|
|
10905
|
+
line?: (boolean | (({
|
|
10906
|
+
pattern?: string
|
|
10907
|
+
flags?: string
|
|
10908
|
+
} | string)[] | ({
|
|
10909
|
+
pattern?: string
|
|
10910
|
+
flags?: string
|
|
10911
|
+
} | string)))
|
|
10912
|
+
})
|
|
10162
10913
|
|
|
10163
10914
|
partitionByNewLine?: boolean
|
|
10164
10915
|
|
|
10165
|
-
|
|
10166
|
-
|
|
10167
|
-
ignoreCase?: boolean
|
|
10168
|
-
|
|
10169
|
-
alphabet?: string
|
|
10170
|
-
|
|
10171
|
-
locales?: (string | string[])
|
|
10916
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10172
10917
|
|
|
10173
10918
|
groups?: (string | string[] | {
|
|
10174
10919
|
|
|
10175
10920
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10176
|
-
[k: string]: unknown | undefined
|
|
10177
10921
|
})[]
|
|
10178
|
-
|
|
10179
|
-
order?: ("asc" | "desc")
|
|
10180
10922
|
}[]
|
|
10181
10923
|
// ----- perfectionist/sort-switch-case -----
|
|
10182
10924
|
type PerfectionistSortSwitchCase = []|[{
|
|
10183
10925
|
|
|
10184
10926
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10185
10927
|
|
|
10928
|
+
fallbackSort?: {
|
|
10929
|
+
|
|
10930
|
+
order?: ("asc" | "desc")
|
|
10931
|
+
|
|
10932
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10933
|
+
[k: string]: unknown | undefined
|
|
10934
|
+
}
|
|
10935
|
+
|
|
10186
10936
|
ignoreCase?: boolean
|
|
10187
10937
|
|
|
10188
10938
|
alphabet?: string
|
|
10189
10939
|
|
|
10190
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10191
|
-
|
|
10192
10940
|
locales?: (string | string[])
|
|
10193
10941
|
|
|
10194
10942
|
order?: ("asc" | "desc")
|
|
10943
|
+
|
|
10944
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10195
10945
|
}]
|
|
10196
10946
|
// ----- perfectionist/sort-union-types -----
|
|
10197
10947
|
type PerfectionistSortUnionTypes = []|[{
|
|
10198
10948
|
|
|
10199
|
-
partitionByComment?: (string[] | boolean | string | {
|
|
10200
|
-
block?: (string[] | boolean | string)
|
|
10201
|
-
line?: (string[] | boolean | string)
|
|
10202
|
-
[k: string]: unknown | undefined
|
|
10203
|
-
})
|
|
10204
|
-
|
|
10205
|
-
partitionByNewLine?: boolean
|
|
10206
|
-
|
|
10207
10949
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10208
10950
|
|
|
10209
|
-
|
|
10951
|
+
fallbackSort?: {
|
|
10952
|
+
|
|
10953
|
+
order?: ("asc" | "desc")
|
|
10954
|
+
|
|
10955
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10956
|
+
[k: string]: unknown | undefined
|
|
10957
|
+
}
|
|
10210
10958
|
|
|
10211
10959
|
ignoreCase?: boolean
|
|
10212
10960
|
|
|
10213
10961
|
alphabet?: string
|
|
10214
10962
|
|
|
10215
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10216
|
-
|
|
10217
10963
|
locales?: (string | string[])
|
|
10218
10964
|
|
|
10965
|
+
order?: ("asc" | "desc")
|
|
10966
|
+
|
|
10967
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
10968
|
+
|
|
10969
|
+
partitionByComment?: (boolean | (({
|
|
10970
|
+
pattern?: string
|
|
10971
|
+
flags?: string
|
|
10972
|
+
} | string)[] | ({
|
|
10973
|
+
pattern?: string
|
|
10974
|
+
flags?: string
|
|
10975
|
+
} | string)) | {
|
|
10976
|
+
block?: (boolean | (({
|
|
10977
|
+
pattern?: string
|
|
10978
|
+
flags?: string
|
|
10979
|
+
} | string)[] | ({
|
|
10980
|
+
pattern?: string
|
|
10981
|
+
flags?: string
|
|
10982
|
+
} | string)))
|
|
10983
|
+
line?: (boolean | (({
|
|
10984
|
+
pattern?: string
|
|
10985
|
+
flags?: string
|
|
10986
|
+
} | string)[] | ({
|
|
10987
|
+
pattern?: string
|
|
10988
|
+
flags?: string
|
|
10989
|
+
} | string)))
|
|
10990
|
+
})
|
|
10991
|
+
|
|
10992
|
+
partitionByNewLine?: boolean
|
|
10993
|
+
|
|
10994
|
+
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10995
|
+
|
|
10219
10996
|
groups?: (string | string[] | {
|
|
10220
10997
|
|
|
10221
10998
|
newlinesBetween?: ("ignore" | "always" | "never")
|
|
10222
|
-
[k: string]: unknown | undefined
|
|
10223
10999
|
})[]
|
|
10224
|
-
|
|
10225
|
-
order?: ("asc" | "desc")
|
|
10226
11000
|
}]
|
|
10227
11001
|
// ----- perfectionist/sort-variable-declarations -----
|
|
10228
11002
|
type PerfectionistSortVariableDeclarations = []|[{
|
|
10229
11003
|
|
|
10230
|
-
partitionByComment?: (string[] | boolean | string | {
|
|
10231
|
-
block?: (string[] | boolean | string)
|
|
10232
|
-
line?: (string[] | boolean | string)
|
|
10233
|
-
[k: string]: unknown | undefined
|
|
10234
|
-
})
|
|
10235
|
-
|
|
10236
|
-
partitionByNewLine?: boolean
|
|
10237
|
-
|
|
10238
11004
|
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10239
11005
|
|
|
11006
|
+
fallbackSort?: {
|
|
11007
|
+
|
|
11008
|
+
order?: ("asc" | "desc")
|
|
11009
|
+
|
|
11010
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11011
|
+
[k: string]: unknown | undefined
|
|
11012
|
+
}
|
|
11013
|
+
|
|
10240
11014
|
ignoreCase?: boolean
|
|
10241
11015
|
|
|
10242
11016
|
alphabet?: string
|
|
10243
11017
|
|
|
10244
|
-
type?: ("alphabetical" | "natural" | "line-length" | "custom")
|
|
10245
|
-
|
|
10246
11018
|
locales?: (string | string[])
|
|
10247
11019
|
|
|
10248
11020
|
order?: ("asc" | "desc")
|
|
11021
|
+
|
|
11022
|
+
type?: ("alphabetical" | "natural" | "line-length" | "custom" | "unsorted")
|
|
11023
|
+
|
|
11024
|
+
partitionByComment?: (boolean | (({
|
|
11025
|
+
pattern?: string
|
|
11026
|
+
flags?: string
|
|
11027
|
+
} | string)[] | ({
|
|
11028
|
+
pattern?: string
|
|
11029
|
+
flags?: string
|
|
11030
|
+
} | string)) | {
|
|
11031
|
+
block?: (boolean | (({
|
|
11032
|
+
pattern?: string
|
|
11033
|
+
flags?: string
|
|
11034
|
+
} | string)[] | ({
|
|
11035
|
+
pattern?: string
|
|
11036
|
+
flags?: string
|
|
11037
|
+
} | string)))
|
|
11038
|
+
line?: (boolean | (({
|
|
11039
|
+
pattern?: string
|
|
11040
|
+
flags?: string
|
|
11041
|
+
} | string)[] | ({
|
|
11042
|
+
pattern?: string
|
|
11043
|
+
flags?: string
|
|
11044
|
+
} | string)))
|
|
11045
|
+
})
|
|
11046
|
+
|
|
11047
|
+
partitionByNewLine?: boolean
|
|
10249
11048
|
}]
|
|
10250
11049
|
// ----- prefer-arrow-callback -----
|
|
10251
11050
|
type PreferArrowCallback = []|[{
|
|
@@ -10893,6 +11692,10 @@ type TestPreferSnapshotHint = []|[("always" | "multi")]
|
|
|
10893
11692
|
type TestRequireHook = []|[{
|
|
10894
11693
|
allowedFunctionCalls?: string[]
|
|
10895
11694
|
}]
|
|
11695
|
+
// ----- test/require-mock-type-parameters -----
|
|
11696
|
+
type TestRequireMockTypeParameters = []|[{
|
|
11697
|
+
checkImportFunctions?: boolean
|
|
11698
|
+
}]
|
|
10896
11699
|
// ----- test/require-top-level-describe -----
|
|
10897
11700
|
type TestRequireTopLevelDescribe = []|[{
|
|
10898
11701
|
maxNumberOfTopLevelDescribes?: number
|
|
@@ -11710,11 +12513,13 @@ type TsNoUnnecessaryBooleanLiteralCompare = []|[{
|
|
|
11710
12513
|
allowComparingNullableBooleansToFalse?: boolean
|
|
11711
12514
|
|
|
11712
12515
|
allowComparingNullableBooleansToTrue?: boolean
|
|
12516
|
+
|
|
12517
|
+
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
11713
12518
|
}]
|
|
11714
12519
|
// ----- ts/no-unnecessary-condition -----
|
|
11715
12520
|
type TsNoUnnecessaryCondition = []|[{
|
|
11716
12521
|
|
|
11717
|
-
allowConstantLoopConditions?: boolean
|
|
12522
|
+
allowConstantLoopConditions?: (boolean | ("always" | "never" | "only-allowed-literals"))
|
|
11718
12523
|
|
|
11719
12524
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
11720
12525
|
|
|
@@ -12140,6 +12945,13 @@ type UnicornNoArrayPushPush = []|[{
|
|
|
12140
12945
|
type UnicornNoArrayReduce = []|[{
|
|
12141
12946
|
allowSimpleOperations?: boolean
|
|
12142
12947
|
}]
|
|
12948
|
+
// ----- unicorn/no-instanceof-builtins -----
|
|
12949
|
+
type UnicornNoInstanceofBuiltins = []|[{
|
|
12950
|
+
useErrorIsError?: boolean
|
|
12951
|
+
strategy?: ("loose" | "strict")
|
|
12952
|
+
include?: string[]
|
|
12953
|
+
exclude?: string[]
|
|
12954
|
+
}]
|
|
12143
12955
|
// ----- unicorn/no-keyword-prefix -----
|
|
12144
12956
|
type UnicornNoKeywordPrefix = []|[{
|
|
12145
12957
|
|
|
@@ -13712,31 +14524,6 @@ interface OptionsConfig extends OptionsComponentExts {
|
|
|
13712
14524
|
}
|
|
13713
14525
|
type ResolvedOptions<T> = T extends boolean ? never : NonNullable<T>;
|
|
13714
14526
|
|
|
13715
|
-
declare const parserPlain: {
|
|
13716
|
-
meta: {
|
|
13717
|
-
name: string;
|
|
13718
|
-
};
|
|
13719
|
-
parseForESLint: (code: string) => {
|
|
13720
|
-
ast: {
|
|
13721
|
-
body: never[];
|
|
13722
|
-
comments: never[];
|
|
13723
|
-
loc: {
|
|
13724
|
-
end: number;
|
|
13725
|
-
start: number;
|
|
13726
|
-
};
|
|
13727
|
-
range: number[];
|
|
13728
|
-
tokens: never[];
|
|
13729
|
-
type: string;
|
|
13730
|
-
};
|
|
13731
|
-
scopeManager: null;
|
|
13732
|
-
services: {
|
|
13733
|
-
isPlain: boolean;
|
|
13734
|
-
};
|
|
13735
|
-
visitorKeys: {
|
|
13736
|
-
Program: never[];
|
|
13737
|
-
};
|
|
13738
|
-
};
|
|
13739
|
-
};
|
|
13740
14527
|
/**
|
|
13741
14528
|
* Combine array and non-array configs into a single array.
|
|
13742
14529
|
*/
|
|
@@ -13759,9 +14546,7 @@ declare function combine(...configs: Awaitable<TypedFlatConfigItem | TypedFlatCo
|
|
|
13759
14546
|
* }]
|
|
13760
14547
|
* ```
|
|
13761
14548
|
*/
|
|
13762
|
-
declare function renameRules(rules: Record<string, any>, map: Record<string, string>):
|
|
13763
|
-
[k: string]: any;
|
|
13764
|
-
};
|
|
14549
|
+
declare function renameRules(rules: Record<string, any>, map: Record<string, string>): Record<string, any>;
|
|
13765
14550
|
/**
|
|
13766
14551
|
* Rename plugin names a flat configs array
|
|
13767
14552
|
*
|
|
@@ -13785,1458 +14570,7 @@ declare function interopDefault<T>(m: Awaitable<T>): Promise<T extends {
|
|
|
13785
14570
|
declare function isPackageInScope(name: string): boolean;
|
|
13786
14571
|
declare function ensurePackages(packages: string[]): Promise<void>;
|
|
13787
14572
|
declare function resolveSubOptions<K extends keyof OptionsConfig>(options: OptionsConfig, key: K): ResolvedOptions<OptionsConfig[K]>;
|
|
13788
|
-
declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsConfig, key: K):
|
|
13789
|
-
[x: string]: eslint.Linter.RuleEntry<any[]> | undefined;
|
|
13790
|
-
'svelte/@typescript-eslint/no-unnecessary-condition'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13791
|
-
allowConstantLoopConditions?: boolean;
|
|
13792
|
-
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean;
|
|
13793
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13794
|
-
'svelte/block-lang'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13795
|
-
enforceScriptPresent?: boolean;
|
|
13796
|
-
enforceStylePresent?: boolean;
|
|
13797
|
-
script?: ((string | null) | [(string | null), ...((string | null))[]]);
|
|
13798
|
-
style?: ((string | null) | [(string | null), ...((string | null))[]]);
|
|
13799
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13800
|
-
'svelte/button-has-type'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13801
|
-
button?: boolean;
|
|
13802
|
-
submit?: boolean;
|
|
13803
|
-
reset?: boolean;
|
|
13804
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13805
|
-
'svelte/comment-directive'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13806
|
-
reportUnusedDisableDirectives?: boolean;
|
|
13807
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13808
|
-
'svelte/derived-has-same-inputs-outputs'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13809
|
-
'svelte/experimental-require-slot-types'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13810
|
-
'svelte/experimental-require-strict-events'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13811
|
-
'svelte/first-attribute-linebreak'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13812
|
-
multiline?: ("below" | "beside");
|
|
13813
|
-
singleline?: ("below" | "beside");
|
|
13814
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13815
|
-
'svelte/html-closing-bracket-new-line'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13816
|
-
singleline?: ("always" | "never");
|
|
13817
|
-
multiline?: ("always" | "never");
|
|
13818
|
-
selfClosingTag?: {
|
|
13819
|
-
singleline?: ("always" | "never");
|
|
13820
|
-
multiline?: ("always" | "never");
|
|
13821
|
-
};
|
|
13822
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13823
|
-
'svelte/html-closing-bracket-spacing'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13824
|
-
startTag?: ("always" | "never" | "ignore");
|
|
13825
|
-
endTag?: ("always" | "never" | "ignore");
|
|
13826
|
-
selfClosingTag?: ("always" | "never" | "ignore");
|
|
13827
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13828
|
-
'svelte/html-quotes'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13829
|
-
prefer?: ("double" | "single");
|
|
13830
|
-
dynamic?: {
|
|
13831
|
-
quoted?: boolean;
|
|
13832
|
-
avoidInvalidUnquotedInHTML?: boolean;
|
|
13833
|
-
};
|
|
13834
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13835
|
-
'svelte/html-self-closing'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13836
|
-
void?: ("never" | "always" | "ignore");
|
|
13837
|
-
normal?: ("never" | "always" | "ignore");
|
|
13838
|
-
foreign?: ("never" | "always" | "ignore");
|
|
13839
|
-
component?: ("never" | "always" | "ignore");
|
|
13840
|
-
svelte?: ("never" | "always" | "ignore");
|
|
13841
|
-
} | "all" | "html" | "none"]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13842
|
-
'svelte/indent'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13843
|
-
indent?: (number | "tab");
|
|
13844
|
-
indentScript?: boolean;
|
|
13845
|
-
switchCase?: number;
|
|
13846
|
-
alignAttributesVertically?: boolean;
|
|
13847
|
-
ignoredNodes?: (string & {
|
|
13848
|
-
[k: string]: unknown | undefined;
|
|
13849
|
-
} & {
|
|
13850
|
-
[k: string]: unknown | undefined;
|
|
13851
|
-
})[];
|
|
13852
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13853
|
-
'svelte/infinite-reactive-loop'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13854
|
-
'svelte/max-attributes-per-line'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13855
|
-
multiline?: number;
|
|
13856
|
-
singleline?: number;
|
|
13857
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13858
|
-
'svelte/mustache-spacing'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13859
|
-
textExpressions?: ("never" | "always");
|
|
13860
|
-
attributesAndProps?: ("never" | "always");
|
|
13861
|
-
directiveExpressions?: ("never" | "always");
|
|
13862
|
-
tags?: {
|
|
13863
|
-
openingBrace?: ("never" | "always");
|
|
13864
|
-
closingBrace?: ("never" | "always" | "always-after-expression");
|
|
13865
|
-
};
|
|
13866
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13867
|
-
'svelte/no-at-debug-tags'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13868
|
-
'svelte/no-at-html-tags'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13869
|
-
'svelte/no-dom-manipulating'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13870
|
-
'svelte/no-dupe-else-if-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13871
|
-
'svelte/no-dupe-on-directives'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13872
|
-
'svelte/no-dupe-style-properties'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13873
|
-
'svelte/no-dupe-use-directives'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13874
|
-
'svelte/no-dynamic-slot-name'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13875
|
-
'svelte/no-export-load-in-svelte-module-in-kit-pages'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13876
|
-
'svelte/no-extra-reactive-curlies'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13877
|
-
'svelte/no-goto-without-base'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13878
|
-
'svelte/no-ignored-unsubscribe'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13879
|
-
'svelte/no-immutable-reactive-statements'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13880
|
-
'svelte/no-inline-styles'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13881
|
-
allowTransitions?: boolean;
|
|
13882
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13883
|
-
'svelte/no-inner-declarations'?: (eslint.Linter.RuleEntry<[] | ["functions" | "both"] | ["functions" | "both", {
|
|
13884
|
-
blockScopedFunctions?: ("allow" | "disallow");
|
|
13885
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13886
|
-
'svelte/no-inspect'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13887
|
-
'svelte/no-not-function-handler'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13888
|
-
'svelte/no-object-in-text-mustaches'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13889
|
-
'svelte/no-reactive-functions'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13890
|
-
'svelte/no-reactive-literals'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13891
|
-
'svelte/no-reactive-reassign'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13892
|
-
props?: boolean;
|
|
13893
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13894
|
-
'svelte/no-restricted-html-elements'?: (eslint.Linter.RuleEntry<[string | {
|
|
13895
|
-
elements?: [string, ...(string)[]];
|
|
13896
|
-
message?: string;
|
|
13897
|
-
}, ...(string | {
|
|
13898
|
-
elements?: [string, ...(string)[]];
|
|
13899
|
-
message?: string;
|
|
13900
|
-
})[]]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13901
|
-
'svelte/no-shorthand-style-property-overrides'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13902
|
-
'svelte/no-spaces-around-equal-signs-in-attribute'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13903
|
-
'svelte/no-store-async'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13904
|
-
'svelte/no-svelte-internal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13905
|
-
'svelte/no-target-blank'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13906
|
-
allowReferrer?: boolean;
|
|
13907
|
-
enforceDynamicLinks?: ("always" | "never");
|
|
13908
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13909
|
-
'svelte/no-trailing-spaces'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13910
|
-
skipBlankLines?: boolean;
|
|
13911
|
-
ignoreComments?: boolean;
|
|
13912
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13913
|
-
'svelte/no-unknown-style-directive-property'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13914
|
-
ignoreProperties?: [string, ...(string)[]];
|
|
13915
|
-
ignorePrefixed?: boolean;
|
|
13916
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13917
|
-
'svelte/no-unused-class-name'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13918
|
-
allowedClassNames?: string[];
|
|
13919
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13920
|
-
'svelte/no-unused-svelte-ignore'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13921
|
-
'svelte/no-useless-mustaches'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13922
|
-
ignoreIncludesComment?: boolean;
|
|
13923
|
-
ignoreStringEscape?: boolean;
|
|
13924
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13925
|
-
'svelte/prefer-class-directive'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13926
|
-
prefer?: ("always" | "empty");
|
|
13927
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13928
|
-
'svelte/prefer-destructured-store-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13929
|
-
'svelte/prefer-style-directive'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13930
|
-
'svelte/require-each-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13931
|
-
'svelte/require-event-dispatcher-types'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13932
|
-
'svelte/require-optimized-style-attribute'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13933
|
-
'svelte/require-store-callbacks-use-set-param'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13934
|
-
'svelte/require-store-reactive-access'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13935
|
-
'svelte/require-stores-init'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13936
|
-
'svelte/shorthand-attribute'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13937
|
-
prefer?: ("always" | "never");
|
|
13938
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13939
|
-
'svelte/shorthand-directive'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13940
|
-
prefer?: ("always" | "never");
|
|
13941
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13942
|
-
'svelte/sort-attributes'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13943
|
-
order?: (string | [string, ...(string)[]] | {
|
|
13944
|
-
match: (string | [string, ...(string)[]]);
|
|
13945
|
-
sort: ("alphabetical" | "ignore");
|
|
13946
|
-
})[];
|
|
13947
|
-
alphabetical?: boolean;
|
|
13948
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13949
|
-
'svelte/spaced-html-comment'?: (eslint.Linter.RuleEntry<[] | ["always" | "never"]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13950
|
-
'svelte/system'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13951
|
-
'svelte/valid-compile'?: (eslint.Linter.RuleEntry<[] | [{
|
|
13952
|
-
ignoreWarnings?: boolean;
|
|
13953
|
-
}]> & eslint.Linter.RuleEntry<undefined>) | undefined;
|
|
13954
|
-
'svelte/valid-each-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13955
|
-
'svelte/valid-prop-names-in-kit-pages'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13956
|
-
'accessor-pairs'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13957
|
-
'antfu/consistent-chaining'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13958
|
-
'antfu/consistent-list-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13959
|
-
'antfu/curly'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13960
|
-
'antfu/if-newline'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13961
|
-
'antfu/import-dedupe'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13962
|
-
'antfu/indent-unindent'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13963
|
-
'antfu/no-import-dist'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13964
|
-
'antfu/no-import-node-modules-by-path'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13965
|
-
'antfu/no-top-level-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13966
|
-
'antfu/no-ts-export-equal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13967
|
-
'antfu/top-level-function'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13968
|
-
'array-bracket-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13969
|
-
'array-bracket-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13970
|
-
'array-callback-return'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13971
|
-
'array-element-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13972
|
-
'arrow-body-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13973
|
-
'arrow-parens'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13974
|
-
'arrow-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13975
|
-
'block-scoped-var'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13976
|
-
'block-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13977
|
-
'brace-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13978
|
-
'callback-return'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13979
|
-
camelcase?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13980
|
-
'capitalized-comments'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13981
|
-
'class-methods-use-this'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13982
|
-
'comma-dangle'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13983
|
-
'comma-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13984
|
-
'comma-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13985
|
-
'command/command'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13986
|
-
complexity?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13987
|
-
'computed-property-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13988
|
-
'consistent-return'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13989
|
-
'consistent-this'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13990
|
-
'constructor-super'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13991
|
-
curly?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13992
|
-
'default-case'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13993
|
-
'default-case-last'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13994
|
-
'default-param-last'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
13995
|
-
'dot-location'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13996
|
-
'dot-notation'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13997
|
-
'eol-last'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13998
|
-
eqeqeq?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
13999
|
-
'eslint-comments/disable-enable-pair'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14000
|
-
'eslint-comments/no-aggregating-enable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14001
|
-
'eslint-comments/no-duplicate-disable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14002
|
-
'eslint-comments/no-restricted-disable'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14003
|
-
'eslint-comments/no-unlimited-disable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14004
|
-
'eslint-comments/no-unused-disable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14005
|
-
'eslint-comments/no-unused-enable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14006
|
-
'eslint-comments/no-use'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14007
|
-
'eslint-comments/require-description'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14008
|
-
'for-direction'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14009
|
-
'func-call-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14010
|
-
'func-name-matching'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14011
|
-
'func-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14012
|
-
'func-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14013
|
-
'function-call-argument-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14014
|
-
'function-paren-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14015
|
-
'generator-star-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14016
|
-
'getter-return'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14017
|
-
'global-require'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14018
|
-
'grouped-accessor-pairs'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14019
|
-
'guard-for-in'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14020
|
-
'handle-callback-err'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14021
|
-
'id-blacklist'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14022
|
-
'id-denylist'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14023
|
-
'id-length'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14024
|
-
'id-match'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14025
|
-
'implicit-arrow-linebreak'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14026
|
-
'import/consistent-type-specifier-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14027
|
-
'import/default'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14028
|
-
'import/dynamic-import-chunkname'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14029
|
-
'import/export'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14030
|
-
'import/exports-last'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14031
|
-
'import/extensions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14032
|
-
'import/first'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14033
|
-
'import/group-exports'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14034
|
-
'import/imports-first'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14035
|
-
'import/max-dependencies'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14036
|
-
'import/named'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14037
|
-
'import/namespace'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14038
|
-
'import/newline-after-import'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14039
|
-
'import/no-absolute-path'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14040
|
-
'import/no-amd'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14041
|
-
'import/no-anonymous-default-export'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14042
|
-
'import/no-commonjs'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14043
|
-
'import/no-cycle'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14044
|
-
'import/no-default-export'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14045
|
-
'import/no-deprecated'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14046
|
-
'import/no-duplicates'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14047
|
-
'import/no-dynamic-require'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14048
|
-
'import/no-empty-named-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14049
|
-
'import/no-extraneous-dependencies'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14050
|
-
'import/no-import-module-exports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14051
|
-
'import/no-internal-modules'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14052
|
-
'import/no-mutable-exports'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14053
|
-
'import/no-named-as-default'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14054
|
-
'import/no-named-as-default-member'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14055
|
-
'import/no-named-default'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14056
|
-
'import/no-named-export'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14057
|
-
'import/no-namespace'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14058
|
-
'import/no-nodejs-modules'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14059
|
-
'import/no-relative-packages'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14060
|
-
'import/no-relative-parent-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14061
|
-
'import/no-rename-default'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14062
|
-
'import/no-restricted-paths'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14063
|
-
'import/no-self-import'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14064
|
-
'import/no-unassigned-import'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14065
|
-
'import/no-unresolved'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14066
|
-
'import/no-unused-modules'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14067
|
-
'import/no-useless-path-segments'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14068
|
-
'import/no-webpack-loader-syntax'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14069
|
-
'import/order'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14070
|
-
'import/prefer-default-export'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14071
|
-
'import/unambiguous'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14072
|
-
indent?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14073
|
-
'indent-legacy'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14074
|
-
'init-declarations'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14075
|
-
'jsdoc/check-access'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14076
|
-
'jsdoc/check-alignment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14077
|
-
'jsdoc/check-examples'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14078
|
-
'jsdoc/check-indentation'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14079
|
-
'jsdoc/check-line-alignment'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14080
|
-
'jsdoc/check-param-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14081
|
-
'jsdoc/check-property-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14082
|
-
'jsdoc/check-syntax'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14083
|
-
'jsdoc/check-tag-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14084
|
-
'jsdoc/check-template-names'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14085
|
-
'jsdoc/check-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14086
|
-
'jsdoc/check-values'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14087
|
-
'jsdoc/convert-to-jsdoc-comments'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14088
|
-
'jsdoc/empty-tags'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14089
|
-
'jsdoc/implements-on-classes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14090
|
-
'jsdoc/imports-as-dependencies'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14091
|
-
'jsdoc/informative-docs'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14092
|
-
'jsdoc/lines-before-block'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14093
|
-
'jsdoc/match-description'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14094
|
-
'jsdoc/match-name'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14095
|
-
'jsdoc/multiline-blocks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14096
|
-
'jsdoc/no-bad-blocks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14097
|
-
'jsdoc/no-blank-block-descriptions'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14098
|
-
'jsdoc/no-blank-blocks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14099
|
-
'jsdoc/no-defaults'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14100
|
-
'jsdoc/no-missing-syntax'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14101
|
-
'jsdoc/no-multi-asterisks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14102
|
-
'jsdoc/no-restricted-syntax'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14103
|
-
'jsdoc/no-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14104
|
-
'jsdoc/no-undefined-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14105
|
-
'jsdoc/require-asterisk-prefix'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14106
|
-
'jsdoc/require-description'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14107
|
-
'jsdoc/require-description-complete-sentence'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14108
|
-
'jsdoc/require-example'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14109
|
-
'jsdoc/require-file-overview'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14110
|
-
'jsdoc/require-hyphen-before-param-description'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14111
|
-
'jsdoc/require-jsdoc'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14112
|
-
'jsdoc/require-param'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14113
|
-
'jsdoc/require-param-description'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14114
|
-
'jsdoc/require-param-name'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14115
|
-
'jsdoc/require-param-type'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14116
|
-
'jsdoc/require-property'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14117
|
-
'jsdoc/require-property-description'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14118
|
-
'jsdoc/require-property-name'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14119
|
-
'jsdoc/require-property-type'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14120
|
-
'jsdoc/require-returns'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14121
|
-
'jsdoc/require-returns-check'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14122
|
-
'jsdoc/require-returns-description'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14123
|
-
'jsdoc/require-returns-type'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14124
|
-
'jsdoc/require-template'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14125
|
-
'jsdoc/require-throws'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14126
|
-
'jsdoc/require-yields'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14127
|
-
'jsdoc/require-yields-check'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14128
|
-
'jsdoc/sort-tags'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14129
|
-
'jsdoc/tag-lines'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14130
|
-
'jsdoc/text-escaping'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14131
|
-
'jsdoc/valid-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14132
|
-
'jsonc/array-bracket-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14133
|
-
'jsonc/array-bracket-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14134
|
-
'jsonc/array-element-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14135
|
-
'jsonc/auto'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14136
|
-
'jsonc/comma-dangle'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14137
|
-
'jsonc/comma-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14138
|
-
'jsonc/indent'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14139
|
-
'jsonc/key-name-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14140
|
-
'jsonc/key-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14141
|
-
'jsonc/no-bigint-literals'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14142
|
-
'jsonc/no-binary-expression'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14143
|
-
'jsonc/no-binary-numeric-literals'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14144
|
-
'jsonc/no-comments'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14145
|
-
'jsonc/no-dupe-keys'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14146
|
-
'jsonc/no-escape-sequence-in-identifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14147
|
-
'jsonc/no-floating-decimal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14148
|
-
'jsonc/no-hexadecimal-numeric-literals'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14149
|
-
'jsonc/no-infinity'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14150
|
-
'jsonc/no-irregular-whitespace'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14151
|
-
'jsonc/no-multi-str'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14152
|
-
'jsonc/no-nan'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14153
|
-
'jsonc/no-number-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14154
|
-
'jsonc/no-numeric-separators'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14155
|
-
'jsonc/no-octal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14156
|
-
'jsonc/no-octal-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14157
|
-
'jsonc/no-octal-numeric-literals'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14158
|
-
'jsonc/no-parenthesized'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14159
|
-
'jsonc/no-plus-sign'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14160
|
-
'jsonc/no-regexp-literals'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14161
|
-
'jsonc/no-sparse-arrays'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14162
|
-
'jsonc/no-template-literals'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14163
|
-
'jsonc/no-undefined-value'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14164
|
-
'jsonc/no-unicode-codepoint-escapes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14165
|
-
'jsonc/no-useless-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14166
|
-
'jsonc/object-curly-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14167
|
-
'jsonc/object-curly-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14168
|
-
'jsonc/object-property-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14169
|
-
'jsonc/quote-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14170
|
-
'jsonc/quotes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14171
|
-
'jsonc/sort-array-values'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14172
|
-
'jsonc/sort-keys'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14173
|
-
'jsonc/space-unary-ops'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14174
|
-
'jsonc/valid-json-number'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14175
|
-
'jsonc/vue-custom-block/no-parsing-error'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14176
|
-
'jsx-quotes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14177
|
-
'key-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14178
|
-
'keyword-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14179
|
-
'line-comment-position'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14180
|
-
'linebreak-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14181
|
-
'lines-around-comment'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14182
|
-
'lines-around-directive'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14183
|
-
'lines-between-class-members'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14184
|
-
'logical-assignment-operators'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14185
|
-
'max-classes-per-file'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14186
|
-
'max-depth'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14187
|
-
'max-len'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14188
|
-
'max-lines'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14189
|
-
'max-lines-per-function'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14190
|
-
'max-nested-callbacks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14191
|
-
'max-params'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14192
|
-
'max-statements'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14193
|
-
'max-statements-per-line'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14194
|
-
'multiline-comment-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14195
|
-
'multiline-ternary'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14196
|
-
'new-cap'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14197
|
-
'new-parens'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14198
|
-
'newline-after-var'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14199
|
-
'newline-before-return'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14200
|
-
'newline-per-chained-call'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14201
|
-
'no-alert'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14202
|
-
'no-array-constructor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14203
|
-
'no-async-promise-executor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14204
|
-
'no-await-in-loop'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14205
|
-
'no-bitwise'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14206
|
-
'no-buffer-constructor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14207
|
-
'no-caller'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14208
|
-
'no-case-declarations'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14209
|
-
'no-catch-shadow'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14210
|
-
'no-class-assign'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14211
|
-
'no-compare-neg-zero'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14212
|
-
'no-cond-assign'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14213
|
-
'no-confusing-arrow'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14214
|
-
'no-console'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14215
|
-
'no-const-assign'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14216
|
-
'no-constant-binary-expression'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14217
|
-
'no-constant-condition'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14218
|
-
'no-constructor-return'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14219
|
-
'no-continue'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14220
|
-
'no-control-regex'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14221
|
-
'no-debugger'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14222
|
-
'no-delete-var'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14223
|
-
'no-div-regex'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14224
|
-
'no-dupe-args'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14225
|
-
'no-dupe-class-members'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14226
|
-
'no-dupe-else-if'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14227
|
-
'no-dupe-keys'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14228
|
-
'no-duplicate-case'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14229
|
-
'no-duplicate-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14230
|
-
'no-else-return'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14231
|
-
'no-empty'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14232
|
-
'no-empty-character-class'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14233
|
-
'no-empty-function'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14234
|
-
'no-empty-pattern'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14235
|
-
'no-empty-static-block'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14236
|
-
'no-eq-null'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14237
|
-
'no-eval'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14238
|
-
'no-ex-assign'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14239
|
-
'no-extend-native'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14240
|
-
'no-extra-bind'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14241
|
-
'no-extra-boolean-cast'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14242
|
-
'no-extra-label'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14243
|
-
'no-extra-parens'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14244
|
-
'no-extra-semi'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14245
|
-
'no-fallthrough'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14246
|
-
'no-floating-decimal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14247
|
-
'no-func-assign'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14248
|
-
'no-global-assign'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14249
|
-
'no-implicit-coercion'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14250
|
-
'no-implicit-globals'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14251
|
-
'no-implied-eval'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14252
|
-
'no-import-assign'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14253
|
-
'no-inline-comments'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14254
|
-
'no-inner-declarations'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14255
|
-
'no-invalid-regexp'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14256
|
-
'no-invalid-this'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14257
|
-
'no-irregular-whitespace'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14258
|
-
'no-iterator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14259
|
-
'no-label-var'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14260
|
-
'no-labels'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14261
|
-
'no-lone-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14262
|
-
'no-lonely-if'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14263
|
-
'no-loop-func'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14264
|
-
'no-loss-of-precision'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14265
|
-
'no-magic-numbers'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14266
|
-
'no-misleading-character-class'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14267
|
-
'no-mixed-operators'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14268
|
-
'no-mixed-requires'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14269
|
-
'no-mixed-spaces-and-tabs'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14270
|
-
'no-multi-assign'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14271
|
-
'no-multi-spaces'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14272
|
-
'no-multi-str'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14273
|
-
'no-multiple-empty-lines'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14274
|
-
'no-native-reassign'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14275
|
-
'no-negated-condition'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14276
|
-
'no-negated-in-lhs'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14277
|
-
'no-nested-ternary'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14278
|
-
'no-new'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14279
|
-
'no-new-func'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14280
|
-
'no-new-native-nonconstructor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14281
|
-
'no-new-object'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14282
|
-
'no-new-require'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14283
|
-
'no-new-symbol'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14284
|
-
'no-new-wrappers'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14285
|
-
'no-nonoctal-decimal-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14286
|
-
'no-obj-calls'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14287
|
-
'no-object-constructor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14288
|
-
'no-octal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14289
|
-
'no-octal-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14290
|
-
'no-param-reassign'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14291
|
-
'no-path-concat'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14292
|
-
'no-plusplus'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14293
|
-
'no-process-env'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14294
|
-
'no-process-exit'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14295
|
-
'no-promise-executor-return'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14296
|
-
'no-proto'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14297
|
-
'no-prototype-builtins'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14298
|
-
'no-redeclare'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14299
|
-
'no-regex-spaces'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14300
|
-
'no-restricted-exports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14301
|
-
'no-restricted-globals'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14302
|
-
'no-restricted-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14303
|
-
'no-restricted-modules'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14304
|
-
'no-restricted-properties'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14305
|
-
'no-restricted-syntax'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14306
|
-
'no-return-assign'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14307
|
-
'no-return-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14308
|
-
'no-script-url'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14309
|
-
'no-self-assign'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14310
|
-
'no-self-compare'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14311
|
-
'no-sequences'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14312
|
-
'no-setter-return'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14313
|
-
'no-shadow'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14314
|
-
'no-shadow-restricted-names'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14315
|
-
'no-spaced-func'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14316
|
-
'no-sparse-arrays'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14317
|
-
'no-sync'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14318
|
-
'no-tabs'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14319
|
-
'no-template-curly-in-string'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14320
|
-
'no-ternary'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14321
|
-
'no-this-before-super'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14322
|
-
'no-throw-literal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14323
|
-
'no-trailing-spaces'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14324
|
-
'no-undef'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14325
|
-
'no-undef-init'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14326
|
-
'no-undefined'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14327
|
-
'no-underscore-dangle'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14328
|
-
'no-unexpected-multiline'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14329
|
-
'no-unmodified-loop-condition'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14330
|
-
'no-unneeded-ternary'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14331
|
-
'no-unreachable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14332
|
-
'no-unreachable-loop'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14333
|
-
'no-unsafe-finally'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14334
|
-
'no-unsafe-negation'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14335
|
-
'no-unsafe-optional-chaining'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14336
|
-
'no-unused-expressions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14337
|
-
'no-unused-labels'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14338
|
-
'no-unused-private-class-members'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14339
|
-
'no-unused-vars'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14340
|
-
'no-use-before-define'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14341
|
-
'no-useless-assignment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14342
|
-
'no-useless-backreference'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14343
|
-
'no-useless-call'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14344
|
-
'no-useless-catch'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14345
|
-
'no-useless-computed-key'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14346
|
-
'no-useless-concat'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14347
|
-
'no-useless-constructor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14348
|
-
'no-useless-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14349
|
-
'no-useless-rename'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14350
|
-
'no-useless-return'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14351
|
-
'no-var'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14352
|
-
'no-void'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14353
|
-
'no-warning-comments'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14354
|
-
'no-whitespace-before-property'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14355
|
-
'no-with'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14356
|
-
'node/callback-return'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14357
|
-
'node/exports-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14358
|
-
'node/file-extension-in-import'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14359
|
-
'node/global-require'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14360
|
-
'node/handle-callback-err'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14361
|
-
'node/hashbang'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14362
|
-
'node/no-callback-literal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14363
|
-
'node/no-deprecated-api'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14364
|
-
'node/no-exports-assign'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14365
|
-
'node/no-extraneous-import'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14366
|
-
'node/no-extraneous-require'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14367
|
-
'node/no-hide-core-modules'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14368
|
-
'node/no-missing-import'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14369
|
-
'node/no-missing-require'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14370
|
-
'node/no-mixed-requires'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14371
|
-
'node/no-new-require'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14372
|
-
'node/no-path-concat'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14373
|
-
'node/no-process-env'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14374
|
-
'node/no-process-exit'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14375
|
-
'node/no-restricted-import'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14376
|
-
'node/no-restricted-require'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14377
|
-
'node/no-sync'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14378
|
-
'node/no-unpublished-bin'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14379
|
-
'node/no-unpublished-import'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14380
|
-
'node/no-unpublished-require'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14381
|
-
'node/no-unsupported-features/es-builtins'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14382
|
-
'node/no-unsupported-features/es-syntax'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14383
|
-
'node/no-unsupported-features/node-builtins'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14384
|
-
'node/prefer-global/buffer'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14385
|
-
'node/prefer-global/console'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14386
|
-
'node/prefer-global/process'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14387
|
-
'node/prefer-global/text-decoder'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14388
|
-
'node/prefer-global/text-encoder'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14389
|
-
'node/prefer-global/url'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14390
|
-
'node/prefer-global/url-search-params'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14391
|
-
'node/prefer-node-protocol'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14392
|
-
'node/prefer-promises/dns'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14393
|
-
'node/prefer-promises/fs'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14394
|
-
'node/process-exit-as-throw'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14395
|
-
'node/shebang'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14396
|
-
'nonblock-statement-body-position'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14397
|
-
'object-curly-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14398
|
-
'object-curly-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14399
|
-
'object-property-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14400
|
-
'object-shorthand'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14401
|
-
'one-var'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14402
|
-
'one-var-declaration-per-line'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14403
|
-
'operator-assignment'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14404
|
-
'operator-linebreak'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14405
|
-
'padded-blocks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14406
|
-
'padding-line-between-statements'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14407
|
-
'perfectionist/sort-array-includes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14408
|
-
'perfectionist/sort-classes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14409
|
-
'perfectionist/sort-decorators'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14410
|
-
'perfectionist/sort-enums'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14411
|
-
'perfectionist/sort-exports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14412
|
-
'perfectionist/sort-heritage-clauses'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14413
|
-
'perfectionist/sort-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14414
|
-
'perfectionist/sort-interfaces'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14415
|
-
'perfectionist/sort-intersection-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14416
|
-
'perfectionist/sort-jsx-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14417
|
-
'perfectionist/sort-maps'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14418
|
-
'perfectionist/sort-modules'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14419
|
-
'perfectionist/sort-named-exports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14420
|
-
'perfectionist/sort-named-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14421
|
-
'perfectionist/sort-object-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14422
|
-
'perfectionist/sort-objects'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14423
|
-
'perfectionist/sort-sets'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14424
|
-
'perfectionist/sort-switch-case'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14425
|
-
'perfectionist/sort-union-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14426
|
-
'perfectionist/sort-variable-declarations'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14427
|
-
'prefer-arrow-callback'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14428
|
-
'prefer-const'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14429
|
-
'prefer-destructuring'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14430
|
-
'prefer-exponentiation-operator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14431
|
-
'prefer-named-capture-group'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14432
|
-
'prefer-numeric-literals'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14433
|
-
'prefer-object-has-own'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14434
|
-
'prefer-object-spread'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14435
|
-
'prefer-promise-reject-errors'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14436
|
-
'prefer-reflect'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14437
|
-
'prefer-regex-literals'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14438
|
-
'prefer-rest-params'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14439
|
-
'prefer-spread'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14440
|
-
'prefer-template'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14441
|
-
'quote-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14442
|
-
quotes?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14443
|
-
radix?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14444
|
-
'react-compiler/react-compiler'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14445
|
-
'react-dom/no-children-in-void-dom-elements'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14446
|
-
'react-dom/no-dangerously-set-innerhtml'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14447
|
-
'react-dom/no-dangerously-set-innerhtml-with-children'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14448
|
-
'react-dom/no-find-dom-node'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14449
|
-
'react-dom/no-missing-button-type'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14450
|
-
'react-dom/no-missing-iframe-sandbox'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14451
|
-
'react-dom/no-namespace'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14452
|
-
'react-dom/no-render-return-value'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14453
|
-
'react-dom/no-script-url'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14454
|
-
'react-dom/no-unknown-property'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14455
|
-
'react-dom/no-unsafe-iframe-sandbox'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14456
|
-
'react-dom/no-unsafe-target-blank'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14457
|
-
'react-dom/no-void-elements-with-children'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14458
|
-
'react-hooks-extra/ensure-custom-hooks-using-other-hooks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14459
|
-
'react-hooks-extra/ensure-use-callback-has-non-empty-deps'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14460
|
-
'react-hooks-extra/ensure-use-memo-has-non-empty-deps'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14461
|
-
'react-hooks-extra/no-direct-set-state-in-use-effect'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14462
|
-
'react-hooks-extra/no-direct-set-state-in-use-layout-effect'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14463
|
-
'react-hooks-extra/no-redundant-custom-hook'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14464
|
-
'react-hooks-extra/no-unnecessary-use-callback'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14465
|
-
'react-hooks-extra/no-unnecessary-use-memo'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14466
|
-
'react-hooks-extra/no-useless-custom-hooks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14467
|
-
'react-hooks-extra/prefer-use-state-lazy-initialization'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14468
|
-
'react-hooks/exhaustive-deps'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14469
|
-
'react-hooks/rules-of-hooks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14470
|
-
'react-naming-convention/component-name'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14471
|
-
'react-naming-convention/filename'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14472
|
-
'react-naming-convention/filename-extension'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14473
|
-
'react-naming-convention/use-state'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14474
|
-
'react-refresh/only-export-components'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14475
|
-
'react-web-api/no-leaked-event-listener'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14476
|
-
'react-web-api/no-leaked-interval'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14477
|
-
'react-web-api/no-leaked-resize-observer'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14478
|
-
'react-web-api/no-leaked-timeout'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14479
|
-
'react/avoid-shorthand-boolean'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14480
|
-
'react/avoid-shorthand-fragment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14481
|
-
'react/ensure-forward-ref-using-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14482
|
-
'react/jsx-no-duplicate-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14483
|
-
'react/jsx-uses-vars'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14484
|
-
'react/no-access-state-in-setstate'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14485
|
-
'react/no-array-index-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14486
|
-
'react/no-children-count'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14487
|
-
'react/no-children-for-each'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14488
|
-
'react/no-children-map'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14489
|
-
'react/no-children-only'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14490
|
-
'react/no-children-prop'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14491
|
-
'react/no-children-to-array'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14492
|
-
'react/no-class-component'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14493
|
-
'react/no-clone-element'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14494
|
-
'react/no-comment-textnodes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14495
|
-
'react/no-complex-conditional-rendering'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14496
|
-
'react/no-complicated-conditional-rendering'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14497
|
-
'react/no-component-will-mount'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14498
|
-
'react/no-component-will-receive-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14499
|
-
'react/no-component-will-update'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14500
|
-
'react/no-context-provider'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14501
|
-
'react/no-create-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14502
|
-
'react/no-default-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14503
|
-
'react/no-direct-mutation-state'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14504
|
-
'react/no-duplicate-jsx-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14505
|
-
'react/no-duplicate-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14506
|
-
'react/no-forward-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14507
|
-
'react/no-implicit-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14508
|
-
'react/no-leaked-conditional-rendering'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14509
|
-
'react/no-missing-component-display-name'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14510
|
-
'react/no-missing-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14511
|
-
'react/no-nested-components'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14512
|
-
'react/no-prop-types'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14513
|
-
'react/no-redundant-should-component-update'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14514
|
-
'react/no-set-state-in-component-did-mount'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14515
|
-
'react/no-set-state-in-component-did-update'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14516
|
-
'react/no-set-state-in-component-will-update'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14517
|
-
'react/no-string-refs'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14518
|
-
'react/no-unsafe-component-will-mount'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14519
|
-
'react/no-unsafe-component-will-receive-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14520
|
-
'react/no-unsafe-component-will-update'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14521
|
-
'react/no-unstable-context-value'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14522
|
-
'react/no-unstable-default-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14523
|
-
'react/no-unused-class-component-members'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14524
|
-
'react/no-unused-state'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14525
|
-
'react/no-useless-fragment'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14526
|
-
'react/prefer-destructuring-assignment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14527
|
-
'react/prefer-react-namespace-import'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14528
|
-
'react/prefer-read-only-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14529
|
-
'react/prefer-shorthand-boolean'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14530
|
-
'react/prefer-shorthand-fragment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14531
|
-
'react/use-jsx-vars'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14532
|
-
'regexp/confusing-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14533
|
-
'regexp/control-character-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14534
|
-
'regexp/grapheme-string-literal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14535
|
-
'regexp/hexadecimal-escape'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14536
|
-
'regexp/letter-case'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14537
|
-
'regexp/match-any'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14538
|
-
'regexp/negation'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14539
|
-
'regexp/no-contradiction-with-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14540
|
-
'regexp/no-control-character'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14541
|
-
'regexp/no-dupe-characters-character-class'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14542
|
-
'regexp/no-dupe-disjunctions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14543
|
-
'regexp/no-empty-alternative'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14544
|
-
'regexp/no-empty-capturing-group'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14545
|
-
'regexp/no-empty-character-class'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14546
|
-
'regexp/no-empty-group'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14547
|
-
'regexp/no-empty-lookarounds-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14548
|
-
'regexp/no-empty-string-literal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14549
|
-
'regexp/no-escape-backspace'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14550
|
-
'regexp/no-extra-lookaround-assertions'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14551
|
-
'regexp/no-invalid-regexp'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14552
|
-
'regexp/no-invisible-character'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14553
|
-
'regexp/no-lazy-ends'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14554
|
-
'regexp/no-legacy-features'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14555
|
-
'regexp/no-misleading-capturing-group'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14556
|
-
'regexp/no-misleading-unicode-character'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14557
|
-
'regexp/no-missing-g-flag'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14558
|
-
'regexp/no-non-standard-flag'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14559
|
-
'regexp/no-obscure-range'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14560
|
-
'regexp/no-octal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14561
|
-
'regexp/no-optional-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14562
|
-
'regexp/no-potentially-useless-backreference'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14563
|
-
'regexp/no-standalone-backslash'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14564
|
-
'regexp/no-super-linear-backtracking'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14565
|
-
'regexp/no-super-linear-move'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14566
|
-
'regexp/no-trivially-nested-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14567
|
-
'regexp/no-trivially-nested-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14568
|
-
'regexp/no-unused-capturing-group'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14569
|
-
'regexp/no-useless-assertions'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14570
|
-
'regexp/no-useless-backreference'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14571
|
-
'regexp/no-useless-character-class'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14572
|
-
'regexp/no-useless-dollar-replacements'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14573
|
-
'regexp/no-useless-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14574
|
-
'regexp/no-useless-flag'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14575
|
-
'regexp/no-useless-lazy'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14576
|
-
'regexp/no-useless-non-capturing-group'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14577
|
-
'regexp/no-useless-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14578
|
-
'regexp/no-useless-range'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14579
|
-
'regexp/no-useless-set-operand'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14580
|
-
'regexp/no-useless-string-literal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14581
|
-
'regexp/no-useless-two-nums-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14582
|
-
'regexp/no-zero-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14583
|
-
'regexp/optimal-lookaround-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14584
|
-
'regexp/optimal-quantifier-concatenation'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14585
|
-
'regexp/prefer-character-class'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14586
|
-
'regexp/prefer-d'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14587
|
-
'regexp/prefer-escape-replacement-dollar-char'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14588
|
-
'regexp/prefer-lookaround'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14589
|
-
'regexp/prefer-named-backreference'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14590
|
-
'regexp/prefer-named-capture-group'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14591
|
-
'regexp/prefer-named-replacement'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14592
|
-
'regexp/prefer-plus-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14593
|
-
'regexp/prefer-predefined-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14594
|
-
'regexp/prefer-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14595
|
-
'regexp/prefer-question-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14596
|
-
'regexp/prefer-range'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14597
|
-
'regexp/prefer-regexp-exec'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14598
|
-
'regexp/prefer-regexp-test'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14599
|
-
'regexp/prefer-result-array-groups'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14600
|
-
'regexp/prefer-set-operation'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14601
|
-
'regexp/prefer-star-quantifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14602
|
-
'regexp/prefer-unicode-codepoint-escapes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14603
|
-
'regexp/prefer-w'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14604
|
-
'regexp/require-unicode-regexp'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14605
|
-
'regexp/require-unicode-sets-regexp'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14606
|
-
'regexp/simplify-set-operations'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14607
|
-
'regexp/sort-alternatives'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14608
|
-
'regexp/sort-character-class-elements'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14609
|
-
'regexp/sort-flags'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14610
|
-
'regexp/strict'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14611
|
-
'regexp/unicode-escape'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14612
|
-
'regexp/unicode-property'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14613
|
-
'regexp/use-ignore-case'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14614
|
-
'require-atomic-updates'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14615
|
-
'require-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14616
|
-
'require-unicode-regexp'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14617
|
-
'require-yield'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14618
|
-
'rest-spread-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14619
|
-
semi?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14620
|
-
'semi-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14621
|
-
'semi-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14622
|
-
'sort-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14623
|
-
'sort-keys'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14624
|
-
'sort-vars'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14625
|
-
'space-before-blocks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14626
|
-
'space-before-function-paren'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14627
|
-
'space-in-parens'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14628
|
-
'space-infix-ops'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14629
|
-
'space-unary-ops'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14630
|
-
'spaced-comment'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14631
|
-
strict?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14632
|
-
'switch-colon-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14633
|
-
'symbol-description'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14634
|
-
'tailwindcss/classnames-order'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14635
|
-
'tailwindcss/enforces-negative-arbitrary-values'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14636
|
-
'tailwindcss/enforces-shorthand'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14637
|
-
'tailwindcss/migration-from-tailwind-2'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14638
|
-
'tailwindcss/no-arbitrary-value'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14639
|
-
'tailwindcss/no-contradicting-classname'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14640
|
-
'tailwindcss/no-custom-classname'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14641
|
-
'tailwindcss/no-unnecessary-arbitrary-value'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14642
|
-
'template-curly-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14643
|
-
'template-tag-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14644
|
-
'test/consistent-test-filename'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14645
|
-
'test/consistent-test-it'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14646
|
-
'test/expect-expect'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14647
|
-
'test/max-expects'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14648
|
-
'test/max-nested-describe'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14649
|
-
'test/no-alias-methods'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14650
|
-
'test/no-commented-out-tests'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14651
|
-
'test/no-conditional-expect'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14652
|
-
'test/no-conditional-in-test'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14653
|
-
'test/no-conditional-tests'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14654
|
-
'test/no-disabled-tests'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14655
|
-
'test/no-done-callback'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14656
|
-
'test/no-duplicate-hooks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14657
|
-
'test/no-focused-tests'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14658
|
-
'test/no-hooks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14659
|
-
'test/no-identical-title'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14660
|
-
'test/no-import-node-test'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14661
|
-
'test/no-interpolation-in-snapshots'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14662
|
-
'test/no-large-snapshots'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14663
|
-
'test/no-mocks-import'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14664
|
-
'test/no-only-tests'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14665
|
-
'test/no-restricted-matchers'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14666
|
-
'test/no-restricted-vi-methods'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14667
|
-
'test/no-standalone-expect'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14668
|
-
'test/no-test-prefixes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14669
|
-
'test/no-test-return-statement'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14670
|
-
'test/padding-around-after-all-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14671
|
-
'test/padding-around-after-each-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14672
|
-
'test/padding-around-all'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14673
|
-
'test/padding-around-before-all-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14674
|
-
'test/padding-around-before-each-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14675
|
-
'test/padding-around-describe-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14676
|
-
'test/padding-around-expect-groups'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14677
|
-
'test/padding-around-test-blocks'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14678
|
-
'test/prefer-called-with'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14679
|
-
'test/prefer-comparison-matcher'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14680
|
-
'test/prefer-each'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14681
|
-
'test/prefer-equality-matcher'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14682
|
-
'test/prefer-expect-assertions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14683
|
-
'test/prefer-expect-resolves'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14684
|
-
'test/prefer-hooks-in-order'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14685
|
-
'test/prefer-hooks-on-top'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14686
|
-
'test/prefer-lowercase-title'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14687
|
-
'test/prefer-mock-promise-shorthand'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14688
|
-
'test/prefer-snapshot-hint'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14689
|
-
'test/prefer-spy-on'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14690
|
-
'test/prefer-strict-equal'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14691
|
-
'test/prefer-to-be'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14692
|
-
'test/prefer-to-be-falsy'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14693
|
-
'test/prefer-to-be-object'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14694
|
-
'test/prefer-to-be-truthy'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14695
|
-
'test/prefer-to-contain'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14696
|
-
'test/prefer-to-have-length'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14697
|
-
'test/prefer-todo'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14698
|
-
'test/prefer-vi-mocked'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14699
|
-
'test/require-hook'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14700
|
-
'test/require-local-test-context-for-concurrent-snapshots'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14701
|
-
'test/require-to-throw-message'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14702
|
-
'test/require-top-level-describe'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14703
|
-
'test/valid-describe-callback'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14704
|
-
'test/valid-expect'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14705
|
-
'test/valid-expect-in-promise'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14706
|
-
'test/valid-title'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14707
|
-
'ts/adjacent-overload-signatures'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14708
|
-
'ts/array-type'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14709
|
-
'ts/await-thenable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14710
|
-
'ts/ban-ts-comment'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14711
|
-
'ts/ban-tslint-comment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14712
|
-
'ts/class-literal-property-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14713
|
-
'ts/class-methods-use-this'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14714
|
-
'ts/consistent-generic-constructors'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14715
|
-
'ts/consistent-indexed-object-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14716
|
-
'ts/consistent-return'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14717
|
-
'ts/consistent-type-assertions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14718
|
-
'ts/consistent-type-definitions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14719
|
-
'ts/consistent-type-exports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14720
|
-
'ts/consistent-type-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14721
|
-
'ts/default-param-last'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14722
|
-
'ts/dot-notation'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14723
|
-
'ts/explicit-function-return-type'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14724
|
-
'ts/explicit-member-accessibility'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14725
|
-
'ts/explicit-module-boundary-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14726
|
-
'ts/init-declarations'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14727
|
-
'ts/max-params'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14728
|
-
'ts/member-ordering'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14729
|
-
'ts/method-signature-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14730
|
-
'ts/naming-convention'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14731
|
-
'ts/no-array-constructor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14732
|
-
'ts/no-array-delete'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14733
|
-
'ts/no-base-to-string'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14734
|
-
'ts/no-confusing-non-null-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14735
|
-
'ts/no-confusing-void-expression'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14736
|
-
'ts/no-deprecated'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14737
|
-
'ts/no-dupe-class-members'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14738
|
-
'ts/no-duplicate-enum-values'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14739
|
-
'ts/no-duplicate-type-constituents'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14740
|
-
'ts/no-dynamic-delete'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14741
|
-
'ts/no-empty-function'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14742
|
-
'ts/no-empty-interface'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14743
|
-
'ts/no-empty-object-type'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14744
|
-
'ts/no-explicit-any'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14745
|
-
'ts/no-extra-non-null-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14746
|
-
'ts/no-extraneous-class'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14747
|
-
'ts/no-floating-promises'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14748
|
-
'ts/no-for-in-array'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14749
|
-
'ts/no-implied-eval'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14750
|
-
'ts/no-import-type-side-effects'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14751
|
-
'ts/no-inferrable-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14752
|
-
'ts/no-invalid-this'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14753
|
-
'ts/no-invalid-void-type'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14754
|
-
'ts/no-loop-func'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14755
|
-
'ts/no-loss-of-precision'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14756
|
-
'ts/no-magic-numbers'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14757
|
-
'ts/no-meaningless-void-operator'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14758
|
-
'ts/no-misused-new'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14759
|
-
'ts/no-misused-promises'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14760
|
-
'ts/no-misused-spread'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14761
|
-
'ts/no-mixed-enums'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14762
|
-
'ts/no-namespace'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14763
|
-
'ts/no-non-null-asserted-nullish-coalescing'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14764
|
-
'ts/no-non-null-asserted-optional-chain'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14765
|
-
'ts/no-non-null-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14766
|
-
'ts/no-redeclare'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14767
|
-
'ts/no-redundant-type-constituents'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14768
|
-
'ts/no-require-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14769
|
-
'ts/no-restricted-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14770
|
-
'ts/no-restricted-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14771
|
-
'ts/no-shadow'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14772
|
-
'ts/no-this-alias'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14773
|
-
'ts/no-type-alias'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14774
|
-
'ts/no-unnecessary-boolean-literal-compare'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14775
|
-
'ts/no-unnecessary-condition'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14776
|
-
'ts/no-unnecessary-parameter-property-assignment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14777
|
-
'ts/no-unnecessary-qualifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14778
|
-
'ts/no-unnecessary-template-expression'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14779
|
-
'ts/no-unnecessary-type-arguments'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14780
|
-
'ts/no-unnecessary-type-assertion'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14781
|
-
'ts/no-unnecessary-type-constraint'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14782
|
-
'ts/no-unnecessary-type-parameters'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14783
|
-
'ts/no-unsafe-argument'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14784
|
-
'ts/no-unsafe-assignment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14785
|
-
'ts/no-unsafe-call'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14786
|
-
'ts/no-unsafe-declaration-merging'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14787
|
-
'ts/no-unsafe-enum-comparison'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14788
|
-
'ts/no-unsafe-function-type'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14789
|
-
'ts/no-unsafe-member-access'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14790
|
-
'ts/no-unsafe-return'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14791
|
-
'ts/no-unsafe-type-assertion'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14792
|
-
'ts/no-unsafe-unary-minus'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14793
|
-
'ts/no-unused-expressions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14794
|
-
'ts/no-unused-vars'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14795
|
-
'ts/no-use-before-define'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14796
|
-
'ts/no-useless-constructor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14797
|
-
'ts/no-useless-empty-export'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14798
|
-
'ts/no-var-requires'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14799
|
-
'ts/no-wrapper-object-types'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14800
|
-
'ts/non-nullable-type-assertion-style'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14801
|
-
'ts/only-throw-error'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14802
|
-
'ts/parameter-properties'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14803
|
-
'ts/prefer-as-const'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14804
|
-
'ts/prefer-destructuring'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14805
|
-
'ts/prefer-enum-initializers'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14806
|
-
'ts/prefer-find'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14807
|
-
'ts/prefer-for-of'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14808
|
-
'ts/prefer-function-type'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14809
|
-
'ts/prefer-includes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14810
|
-
'ts/prefer-literal-enum-member'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14811
|
-
'ts/prefer-namespace-keyword'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14812
|
-
'ts/prefer-nullish-coalescing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14813
|
-
'ts/prefer-optional-chain'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14814
|
-
'ts/prefer-promise-reject-errors'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14815
|
-
'ts/prefer-readonly'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14816
|
-
'ts/prefer-readonly-parameter-types'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14817
|
-
'ts/prefer-reduce-type-parameter'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14818
|
-
'ts/prefer-regexp-exec'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14819
|
-
'ts/prefer-return-this-type'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14820
|
-
'ts/prefer-string-starts-ends-with'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14821
|
-
'ts/prefer-ts-expect-error'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14822
|
-
'ts/promise-function-async'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14823
|
-
'ts/related-getter-setter-pairs'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14824
|
-
'ts/require-array-sort-compare'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14825
|
-
'ts/require-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14826
|
-
'ts/restrict-plus-operands'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14827
|
-
'ts/restrict-template-expressions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14828
|
-
'ts/return-await'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14829
|
-
'ts/sort-type-constituents'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14830
|
-
'ts/strict-boolean-expressions'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14831
|
-
'ts/switch-exhaustiveness-check'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14832
|
-
'ts/triple-slash-reference'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14833
|
-
'ts/typedef'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14834
|
-
'ts/unbound-method'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14835
|
-
'ts/unified-signatures'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14836
|
-
'ts/use-unknown-in-catch-callback-variable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14837
|
-
'unicode-bom'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14838
|
-
'unicorn/better-regex'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14839
|
-
'unicorn/catch-error-name'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14840
|
-
'unicorn/consistent-destructuring'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14841
|
-
'unicorn/consistent-empty-array-spread'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14842
|
-
'unicorn/consistent-existence-index-check'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14843
|
-
'unicorn/consistent-function-scoping'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14844
|
-
'unicorn/custom-error-definition'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14845
|
-
'unicorn/empty-brace-spaces'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14846
|
-
'unicorn/error-message'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14847
|
-
'unicorn/escape-case'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14848
|
-
'unicorn/expiring-todo-comments'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14849
|
-
'unicorn/explicit-length-check'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14850
|
-
'unicorn/filename-case'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14851
|
-
'unicorn/import-index'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14852
|
-
'unicorn/import-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14853
|
-
'unicorn/new-for-builtins'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14854
|
-
'unicorn/no-abusive-eslint-disable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14855
|
-
'unicorn/no-anonymous-default-export'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14856
|
-
'unicorn/no-array-callback-reference'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14857
|
-
'unicorn/no-array-for-each'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14858
|
-
'unicorn/no-array-instanceof'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14859
|
-
'unicorn/no-array-method-this-argument'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14860
|
-
'unicorn/no-array-push-push'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14861
|
-
'unicorn/no-array-reduce'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14862
|
-
'unicorn/no-await-expression-member'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14863
|
-
'unicorn/no-await-in-promise-methods'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14864
|
-
'unicorn/no-console-spaces'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14865
|
-
'unicorn/no-document-cookie'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14866
|
-
'unicorn/no-empty-file'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14867
|
-
'unicorn/no-fn-reference-in-iterator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14868
|
-
'unicorn/no-for-loop'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14869
|
-
'unicorn/no-hex-escape'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14870
|
-
'unicorn/no-instanceof-array'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14871
|
-
'unicorn/no-invalid-fetch-options'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14872
|
-
'unicorn/no-invalid-remove-event-listener'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14873
|
-
'unicorn/no-keyword-prefix'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14874
|
-
'unicorn/no-length-as-slice-end'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14875
|
-
'unicorn/no-lonely-if'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14876
|
-
'unicorn/no-magic-array-flat-depth'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14877
|
-
'unicorn/no-negated-condition'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14878
|
-
'unicorn/no-negation-in-equality-check'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14879
|
-
'unicorn/no-nested-ternary'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14880
|
-
'unicorn/no-new-array'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14881
|
-
'unicorn/no-new-buffer'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14882
|
-
'unicorn/no-null'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14883
|
-
'unicorn/no-object-as-default-parameter'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14884
|
-
'unicorn/no-process-exit'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14885
|
-
'unicorn/no-reduce'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14886
|
-
'unicorn/no-single-promise-in-promise-methods'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14887
|
-
'unicorn/no-static-only-class'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14888
|
-
'unicorn/no-thenable'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14889
|
-
'unicorn/no-this-assignment'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14890
|
-
'unicorn/no-typeof-undefined'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14891
|
-
'unicorn/no-unnecessary-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14892
|
-
'unicorn/no-unnecessary-polyfills'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14893
|
-
'unicorn/no-unreadable-array-destructuring'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14894
|
-
'unicorn/no-unreadable-iife'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14895
|
-
'unicorn/no-unsafe-regex'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14896
|
-
'unicorn/no-unused-properties'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14897
|
-
'unicorn/no-useless-fallback-in-spread'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14898
|
-
'unicorn/no-useless-length-check'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14899
|
-
'unicorn/no-useless-promise-resolve-reject'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14900
|
-
'unicorn/no-useless-spread'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14901
|
-
'unicorn/no-useless-switch-case'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14902
|
-
'unicorn/no-useless-undefined'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14903
|
-
'unicorn/no-zero-fractions'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14904
|
-
'unicorn/number-literal-case'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14905
|
-
'unicorn/numeric-separators-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14906
|
-
'unicorn/prefer-add-event-listener'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14907
|
-
'unicorn/prefer-array-find'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14908
|
-
'unicorn/prefer-array-flat'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14909
|
-
'unicorn/prefer-array-flat-map'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14910
|
-
'unicorn/prefer-array-index-of'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14911
|
-
'unicorn/prefer-array-some'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14912
|
-
'unicorn/prefer-at'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14913
|
-
'unicorn/prefer-blob-reading-methods'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14914
|
-
'unicorn/prefer-code-point'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14915
|
-
'unicorn/prefer-dataset'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14916
|
-
'unicorn/prefer-date-now'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14917
|
-
'unicorn/prefer-default-parameters'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14918
|
-
'unicorn/prefer-dom-node-append'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14919
|
-
'unicorn/prefer-dom-node-dataset'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14920
|
-
'unicorn/prefer-dom-node-remove'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14921
|
-
'unicorn/prefer-dom-node-text-content'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14922
|
-
'unicorn/prefer-event-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14923
|
-
'unicorn/prefer-event-target'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14924
|
-
'unicorn/prefer-exponentiation-operator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14925
|
-
'unicorn/prefer-export-from'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14926
|
-
'unicorn/prefer-flat-map'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14927
|
-
'unicorn/prefer-global-this'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14928
|
-
'unicorn/prefer-includes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14929
|
-
'unicorn/prefer-json-parse-buffer'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14930
|
-
'unicorn/prefer-keyboard-event-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14931
|
-
'unicorn/prefer-logical-operator-over-ternary'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14932
|
-
'unicorn/prefer-math-min-max'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14933
|
-
'unicorn/prefer-math-trunc'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14934
|
-
'unicorn/prefer-modern-dom-apis'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14935
|
-
'unicorn/prefer-modern-math-apis'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14936
|
-
'unicorn/prefer-module'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14937
|
-
'unicorn/prefer-native-coercion-functions'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14938
|
-
'unicorn/prefer-negative-index'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14939
|
-
'unicorn/prefer-node-append'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14940
|
-
'unicorn/prefer-node-protocol'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14941
|
-
'unicorn/prefer-node-remove'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14942
|
-
'unicorn/prefer-number-properties'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14943
|
-
'unicorn/prefer-object-from-entries'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14944
|
-
'unicorn/prefer-object-has-own'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14945
|
-
'unicorn/prefer-optional-catch-binding'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14946
|
-
'unicorn/prefer-prototype-methods'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14947
|
-
'unicorn/prefer-query-selector'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14948
|
-
'unicorn/prefer-reflect-apply'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14949
|
-
'unicorn/prefer-regexp-test'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14950
|
-
'unicorn/prefer-replace-all'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14951
|
-
'unicorn/prefer-set-has'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14952
|
-
'unicorn/prefer-set-size'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14953
|
-
'unicorn/prefer-spread'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14954
|
-
'unicorn/prefer-starts-ends-with'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14955
|
-
'unicorn/prefer-string-raw'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14956
|
-
'unicorn/prefer-string-replace-all'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14957
|
-
'unicorn/prefer-string-slice'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14958
|
-
'unicorn/prefer-string-starts-ends-with'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14959
|
-
'unicorn/prefer-string-trim-start-end'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14960
|
-
'unicorn/prefer-structured-clone'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14961
|
-
'unicorn/prefer-switch'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14962
|
-
'unicorn/prefer-ternary'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14963
|
-
'unicorn/prefer-text-content'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14964
|
-
'unicorn/prefer-top-level-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14965
|
-
'unicorn/prefer-trim-start-end'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14966
|
-
'unicorn/prefer-type-error'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14967
|
-
'unicorn/prevent-abbreviations'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14968
|
-
'unicorn/regex-shorthand'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14969
|
-
'unicorn/relative-url-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14970
|
-
'unicorn/require-array-join-separator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14971
|
-
'unicorn/require-number-to-fixed-digits-argument'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14972
|
-
'unicorn/require-post-message-target-origin'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14973
|
-
'unicorn/string-content'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14974
|
-
'unicorn/switch-case-braces'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14975
|
-
'unicorn/template-indent'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14976
|
-
'unicorn/text-encoding-identifier-case'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14977
|
-
'unicorn/throw-new-error'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14978
|
-
'unocss/blocklist'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14979
|
-
'unocss/enforce-class-compile'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14980
|
-
'unocss/order'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14981
|
-
'unocss/order-attributify'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14982
|
-
'unused-imports/no-unused-imports'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14983
|
-
'unused-imports/no-unused-vars'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14984
|
-
'use-isnan'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14985
|
-
'valid-typeof'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14986
|
-
'vars-on-top'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
14987
|
-
'vue/array-bracket-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14988
|
-
'vue/array-bracket-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14989
|
-
'vue/array-element-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14990
|
-
'vue/arrow-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14991
|
-
'vue/attribute-hyphenation'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14992
|
-
'vue/attributes-order'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14993
|
-
'vue/block-lang'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14994
|
-
'vue/block-order'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14995
|
-
'vue/block-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14996
|
-
'vue/block-tag-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14997
|
-
'vue/brace-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14998
|
-
'vue/camelcase'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
14999
|
-
'vue/comma-dangle'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15000
|
-
'vue/comma-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15001
|
-
'vue/comma-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15002
|
-
'vue/comment-directive'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15003
|
-
'vue/component-api-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15004
|
-
'vue/component-definition-name-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15005
|
-
'vue/component-name-in-template-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15006
|
-
'vue/component-options-name-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15007
|
-
'vue/component-tags-order'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15008
|
-
'vue/custom-event-name-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15009
|
-
'vue/define-emits-declaration'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15010
|
-
'vue/define-macros-order'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15011
|
-
'vue/define-props-declaration'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15012
|
-
'vue/dot-location'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15013
|
-
'vue/dot-notation'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15014
|
-
'vue/enforce-style-attribute'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15015
|
-
'vue/eqeqeq'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15016
|
-
'vue/first-attribute-linebreak'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15017
|
-
'vue/func-call-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15018
|
-
'vue/html-button-has-type'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15019
|
-
'vue/html-closing-bracket-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15020
|
-
'vue/html-closing-bracket-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15021
|
-
'vue/html-comment-content-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15022
|
-
'vue/html-comment-content-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15023
|
-
'vue/html-comment-indent'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15024
|
-
'vue/html-end-tags'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15025
|
-
'vue/html-indent'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15026
|
-
'vue/html-quotes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15027
|
-
'vue/html-self-closing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15028
|
-
'vue/jsx-uses-vars'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15029
|
-
'vue/key-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15030
|
-
'vue/keyword-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15031
|
-
'vue/match-component-file-name'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15032
|
-
'vue/match-component-import-name'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15033
|
-
'vue/max-attributes-per-line'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15034
|
-
'vue/max-len'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15035
|
-
'vue/max-lines-per-block'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15036
|
-
'vue/max-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15037
|
-
'vue/max-template-depth'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15038
|
-
'vue/multi-word-component-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15039
|
-
'vue/multiline-html-element-content-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15040
|
-
'vue/multiline-ternary'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15041
|
-
'vue/mustache-interpolation-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15042
|
-
'vue/new-line-between-multi-line-property'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15043
|
-
'vue/next-tick-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15044
|
-
'vue/no-arrow-functions-in-watch'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15045
|
-
'vue/no-async-in-computed-properties'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15046
|
-
'vue/no-bare-strings-in-template'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15047
|
-
'vue/no-boolean-default'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15048
|
-
'vue/no-child-content'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15049
|
-
'vue/no-computed-properties-in-data'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15050
|
-
'vue/no-console'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15051
|
-
'vue/no-constant-condition'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15052
|
-
'vue/no-custom-modifiers-on-v-model'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15053
|
-
'vue/no-deprecated-data-object-declaration'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15054
|
-
'vue/no-deprecated-delete-set'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15055
|
-
'vue/no-deprecated-destroyed-lifecycle'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15056
|
-
'vue/no-deprecated-dollar-listeners-api'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15057
|
-
'vue/no-deprecated-dollar-scopedslots-api'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15058
|
-
'vue/no-deprecated-events-api'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15059
|
-
'vue/no-deprecated-filter'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15060
|
-
'vue/no-deprecated-functional-template'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15061
|
-
'vue/no-deprecated-html-element-is'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15062
|
-
'vue/no-deprecated-inline-template'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15063
|
-
'vue/no-deprecated-model-definition'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15064
|
-
'vue/no-deprecated-props-default-this'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15065
|
-
'vue/no-deprecated-router-link-tag-prop'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15066
|
-
'vue/no-deprecated-scope-attribute'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15067
|
-
'vue/no-deprecated-slot-attribute'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15068
|
-
'vue/no-deprecated-slot-scope-attribute'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15069
|
-
'vue/no-deprecated-v-bind-sync'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15070
|
-
'vue/no-deprecated-v-is'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15071
|
-
'vue/no-deprecated-v-on-native-modifier'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15072
|
-
'vue/no-deprecated-v-on-number-modifiers'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15073
|
-
'vue/no-deprecated-vue-config-keycodes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15074
|
-
'vue/no-dupe-keys'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15075
|
-
'vue/no-dupe-v-else-if'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15076
|
-
'vue/no-duplicate-attr-inheritance'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15077
|
-
'vue/no-duplicate-attributes'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15078
|
-
'vue/no-empty-component-block'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15079
|
-
'vue/no-empty-pattern'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15080
|
-
'vue/no-export-in-script-setup'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15081
|
-
'vue/no-expose-after-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15082
|
-
'vue/no-extra-parens'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15083
|
-
'vue/no-invalid-model-keys'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15084
|
-
'vue/no-irregular-whitespace'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15085
|
-
'vue/no-lifecycle-after-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15086
|
-
'vue/no-lone-template'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15087
|
-
'vue/no-loss-of-precision'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15088
|
-
'vue/no-multi-spaces'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15089
|
-
'vue/no-multiple-objects-in-class'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15090
|
-
'vue/no-multiple-slot-args'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15091
|
-
'vue/no-multiple-template-root'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15092
|
-
'vue/no-mutating-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15093
|
-
'vue/no-parsing-error'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15094
|
-
'vue/no-potential-component-option-typo'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15095
|
-
'vue/no-ref-as-operand'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15096
|
-
'vue/no-ref-object-destructure'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15097
|
-
'vue/no-ref-object-reactivity-loss'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15098
|
-
'vue/no-required-prop-with-default'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15099
|
-
'vue/no-reserved-component-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15100
|
-
'vue/no-reserved-keys'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15101
|
-
'vue/no-reserved-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15102
|
-
'vue/no-restricted-block'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15103
|
-
'vue/no-restricted-call-after-await'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15104
|
-
'vue/no-restricted-class'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15105
|
-
'vue/no-restricted-component-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15106
|
-
'vue/no-restricted-component-options'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15107
|
-
'vue/no-restricted-custom-event'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15108
|
-
'vue/no-restricted-html-elements'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15109
|
-
'vue/no-restricted-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15110
|
-
'vue/no-restricted-static-attribute'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15111
|
-
'vue/no-restricted-syntax'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15112
|
-
'vue/no-restricted-v-bind'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15113
|
-
'vue/no-restricted-v-on'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15114
|
-
'vue/no-root-v-if'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15115
|
-
'vue/no-setup-props-destructure'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15116
|
-
'vue/no-setup-props-reactivity-loss'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15117
|
-
'vue/no-shared-component-data'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15118
|
-
'vue/no-side-effects-in-computed-properties'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15119
|
-
'vue/no-spaces-around-equal-signs-in-attribute'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15120
|
-
'vue/no-sparse-arrays'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15121
|
-
'vue/no-static-inline-styles'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15122
|
-
'vue/no-template-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15123
|
-
'vue/no-template-shadow'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15124
|
-
'vue/no-template-target-blank'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15125
|
-
'vue/no-textarea-mustache'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15126
|
-
'vue/no-this-in-before-route-enter'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15127
|
-
'vue/no-undef-components'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15128
|
-
'vue/no-undef-properties'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15129
|
-
'vue/no-unsupported-features'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15130
|
-
'vue/no-unused-components'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15131
|
-
'vue/no-unused-emit-declarations'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15132
|
-
'vue/no-unused-properties'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15133
|
-
'vue/no-unused-refs'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15134
|
-
'vue/no-unused-vars'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15135
|
-
'vue/no-use-computed-property-like-method'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15136
|
-
'vue/no-use-v-else-with-v-for'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15137
|
-
'vue/no-use-v-if-with-v-for'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15138
|
-
'vue/no-useless-concat'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15139
|
-
'vue/no-useless-mustaches'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15140
|
-
'vue/no-useless-template-attributes'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15141
|
-
'vue/no-useless-v-bind'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15142
|
-
'vue/no-v-for-template-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15143
|
-
'vue/no-v-for-template-key-on-child'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15144
|
-
'vue/no-v-html'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15145
|
-
'vue/no-v-model-argument'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15146
|
-
'vue/no-v-text'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15147
|
-
'vue/no-v-text-v-html-on-component'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15148
|
-
'vue/no-watch-after-await'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15149
|
-
'vue/object-curly-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15150
|
-
'vue/object-curly-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15151
|
-
'vue/object-property-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15152
|
-
'vue/object-shorthand'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15153
|
-
'vue/one-component-per-file'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15154
|
-
'vue/operator-linebreak'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15155
|
-
'vue/order-in-components'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15156
|
-
'vue/padding-line-between-blocks'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15157
|
-
'vue/padding-line-between-tags'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15158
|
-
'vue/padding-lines-in-component-definition'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15159
|
-
'vue/prefer-define-options'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15160
|
-
'vue/prefer-import-from-vue'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15161
|
-
'vue/prefer-prop-type-boolean-first'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15162
|
-
'vue/prefer-separate-static-class'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15163
|
-
'vue/prefer-template'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15164
|
-
'vue/prefer-true-attribute-shorthand'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15165
|
-
'vue/prefer-use-template-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15166
|
-
'vue/prop-name-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15167
|
-
'vue/quote-props'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15168
|
-
'vue/require-component-is'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15169
|
-
'vue/require-default-export'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15170
|
-
'vue/require-default-prop'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15171
|
-
'vue/require-direct-export'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15172
|
-
'vue/require-emit-validator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15173
|
-
'vue/require-explicit-emits'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15174
|
-
'vue/require-explicit-slots'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15175
|
-
'vue/require-expose'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15176
|
-
'vue/require-macro-variable-name'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15177
|
-
'vue/require-name-property'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15178
|
-
'vue/require-prop-comment'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15179
|
-
'vue/require-prop-type-constructor'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15180
|
-
'vue/require-prop-types'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15181
|
-
'vue/require-render-return'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15182
|
-
'vue/require-slots-as-functions'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15183
|
-
'vue/require-toggle-inside-transition'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15184
|
-
'vue/require-typed-object-prop'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15185
|
-
'vue/require-typed-ref'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15186
|
-
'vue/require-v-for-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15187
|
-
'vue/require-valid-default-prop'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15188
|
-
'vue/restricted-component-names'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15189
|
-
'vue/return-in-computed-property'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15190
|
-
'vue/return-in-emits-validator'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15191
|
-
'vue/script-indent'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15192
|
-
'vue/script-setup-uses-vars'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15193
|
-
'vue/singleline-html-element-content-newline'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15194
|
-
'vue/slot-name-casing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15195
|
-
'vue/sort-keys'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15196
|
-
'vue/space-in-parens'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15197
|
-
'vue/space-infix-ops'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15198
|
-
'vue/space-unary-ops'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15199
|
-
'vue/static-class-names-order'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15200
|
-
'vue/template-curly-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15201
|
-
'vue/this-in-template'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15202
|
-
'vue/use-v-on-exact'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15203
|
-
'vue/v-bind-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15204
|
-
'vue/v-for-delimiter-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15205
|
-
'vue/v-if-else-key'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15206
|
-
'vue/v-on-event-hyphenation'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15207
|
-
'vue/v-on-function-call'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15208
|
-
'vue/v-on-handler-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15209
|
-
'vue/v-on-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15210
|
-
'vue/v-slot-style'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15211
|
-
'vue/valid-attribute-name'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15212
|
-
'vue/valid-define-emits'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15213
|
-
'vue/valid-define-options'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15214
|
-
'vue/valid-define-props'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15215
|
-
'vue/valid-model-definition'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15216
|
-
'vue/valid-next-tick'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15217
|
-
'vue/valid-template-root'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15218
|
-
'vue/valid-v-bind'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15219
|
-
'vue/valid-v-bind-sync'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15220
|
-
'vue/valid-v-cloak'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15221
|
-
'vue/valid-v-else'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15222
|
-
'vue/valid-v-else-if'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15223
|
-
'vue/valid-v-for'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15224
|
-
'vue/valid-v-html'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15225
|
-
'vue/valid-v-if'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15226
|
-
'vue/valid-v-is'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15227
|
-
'vue/valid-v-memo'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15228
|
-
'vue/valid-v-model'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15229
|
-
'vue/valid-v-on'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15230
|
-
'vue/valid-v-once'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15231
|
-
'vue/valid-v-pre'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15232
|
-
'vue/valid-v-show'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15233
|
-
'vue/valid-v-slot'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15234
|
-
'vue/valid-v-text'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15235
|
-
'wrap-iife'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15236
|
-
'wrap-regex'?: eslint.Linter.RuleEntry<[]> | undefined;
|
|
15237
|
-
'yield-star-spacing'?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15238
|
-
yoda?: eslint.Linter.RuleEntry<undefined> | undefined;
|
|
15239
|
-
};
|
|
14573
|
+
declare function getOverrides<K extends keyof OptionsConfig>(options: OptionsConfig, key: K): Partial<Linter.RulesRecord & RuleOptions>;
|
|
15240
14574
|
declare function isInEditorEnv(): boolean;
|
|
15241
14575
|
declare function isInGitHooksOrLintStaged(): boolean;
|
|
15242
14576
|
|
|
@@ -15263,4 +14597,4 @@ declare const defaultPluginRenaming: {
|
|
|
15263
14597
|
*/
|
|
15264
14598
|
declare function defineConfig(options?: OptionsConfig & Omit<TypedFlatConfigItem, 'files'>, ...userConfigs: Awaitable<TypedFlatConfigItem | TypedFlatConfigItem[] | Linter.Config[]>[]): Promise<TypedFlatConfigItem[]>;
|
|
15265
14599
|
|
|
15266
|
-
export { type Awaitable, type ConfigNames, type OptionsComponentExts, type OptionsConfig, type OptionsFiles, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsRegExp, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type OptionsUnoCSS, type OptionsVue, type ResolvedOptions, type Rules, type TypedFlatConfigItem, combine, defaultPluginRenaming, defineConfig, ensurePackages, getOverrides, getVueVersion, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope,
|
|
14600
|
+
export { type Awaitable, type ConfigNames, type OptionsComponentExts, type OptionsConfig, type OptionsFiles, type OptionsHasTypeScript, type OptionsIsInEditor, type OptionsOverrides, type OptionsRegExp, type OptionsTypeScriptParserOptions, type OptionsTypeScriptWithTypes, type OptionsTypescript, type OptionsUnoCSS, type OptionsVue, type ResolvedOptions, type Rules, type TypedFlatConfigItem, combine, defaultPluginRenaming, defineConfig, ensurePackages, getOverrides, getVueVersion, interopDefault, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, renamePluginInConfigs, renameRules, resolveSubOptions, toArray };
|