@vinicunca/eslint-config 2.11.5 → 2.11.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +32 -36
- package/dist/index.d.cts +521 -316
- package/dist/index.d.ts +521 -316
- package/dist/index.js +31 -35
- package/package.json +13 -13
package/dist/index.d.cts
CHANGED
|
@@ -2465,7 +2465,7 @@ interface RuleOptions {
|
|
|
2465
2465
|
* disallow the use of `process.env`
|
|
2466
2466
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-env.md
|
|
2467
2467
|
*/
|
|
2468
|
-
'node/no-process-env'?: Linter.RuleEntry<
|
|
2468
|
+
'node/no-process-env'?: Linter.RuleEntry<NodeNoProcessEnv>
|
|
2469
2469
|
/**
|
|
2470
2470
|
* disallow the use of `process.exit()`
|
|
2471
2471
|
* @see https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-process-exit.md
|
|
@@ -2648,6 +2648,7 @@ interface RuleOptions {
|
|
|
2648
2648
|
/**
|
|
2649
2649
|
* Enforce sorted Astro attributes.
|
|
2650
2650
|
* @see https://perfectionist.dev/rules/sort-astro-attributes
|
|
2651
|
+
* @deprecated
|
|
2651
2652
|
*/
|
|
2652
2653
|
'perfectionist/sort-astro-attributes'?: Linter.RuleEntry<PerfectionistSortAstroAttributes>
|
|
2653
2654
|
/**
|
|
@@ -2718,6 +2719,7 @@ interface RuleOptions {
|
|
|
2718
2719
|
/**
|
|
2719
2720
|
* Enforce sorted Svelte attributes.
|
|
2720
2721
|
* @see https://perfectionist.dev/rules/sort-svelte-attributes
|
|
2722
|
+
* @deprecated
|
|
2721
2723
|
*/
|
|
2722
2724
|
'perfectionist/sort-svelte-attributes'?: Linter.RuleEntry<PerfectionistSortSvelteAttributes>
|
|
2723
2725
|
/**
|
|
@@ -2738,6 +2740,7 @@ interface RuleOptions {
|
|
|
2738
2740
|
/**
|
|
2739
2741
|
* Enforce sorted Vue attributes.
|
|
2740
2742
|
* @see https://perfectionist.dev/rules/sort-vue-attributes
|
|
2743
|
+
* @deprecated
|
|
2741
2744
|
*/
|
|
2742
2745
|
'perfectionist/sort-vue-attributes'?: Linter.RuleEntry<PerfectionistSortVueAttributes>
|
|
2743
2746
|
/**
|
|
@@ -4010,6 +4013,11 @@ interface RuleOptions {
|
|
|
4010
4013
|
* @see https://eslint.style/rules/js/computed-property-spacing
|
|
4011
4014
|
*/
|
|
4012
4015
|
'style/computed-property-spacing'?: Linter.RuleEntry<StyleComputedPropertySpacing>
|
|
4016
|
+
/**
|
|
4017
|
+
* Enforce consistent line breaks after opening and before closing braces
|
|
4018
|
+
* @see https://eslint.style/rules/plus/curly-newline
|
|
4019
|
+
*/
|
|
4020
|
+
'style/curly-newline'?: Linter.RuleEntry<StyleCurlyNewline>
|
|
4013
4021
|
/**
|
|
4014
4022
|
* Enforce consistent newlines before and after dots
|
|
4015
4023
|
* @see https://eslint.style/rules/js/dot-location
|
|
@@ -4074,7 +4082,7 @@ interface RuleOptions {
|
|
|
4074
4082
|
* Enforce closing tag location for multiline JSX
|
|
4075
4083
|
* @see https://eslint.style/rules/jsx/jsx-closing-tag-location
|
|
4076
4084
|
*/
|
|
4077
|
-
'style/jsx-closing-tag-location'?: Linter.RuleEntry<
|
|
4085
|
+
'style/jsx-closing-tag-location'?: Linter.RuleEntry<StyleJsxClosingTagLocation>
|
|
4078
4086
|
/**
|
|
4079
4087
|
* Disallow unnecessary JSX expressions when literals alone are sufficient or enforce JSX expressions on literals in JSX children or attributes
|
|
4080
4088
|
* @see https://eslint.style/rules/jsx/jsx-curly-brace-presence
|
|
@@ -5041,6 +5049,11 @@ interface RuleOptions {
|
|
|
5041
5049
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-todo.md
|
|
5042
5050
|
*/
|
|
5043
5051
|
'test/prefer-todo'?: Linter.RuleEntry<[]>
|
|
5052
|
+
/**
|
|
5053
|
+
* Prefer `vi.mocked()` over `fn as Mock`
|
|
5054
|
+
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-vi-mocked.md
|
|
5055
|
+
*/
|
|
5056
|
+
'test/prefer-vi-mocked'?: Linter.RuleEntry<[]>
|
|
5044
5057
|
/**
|
|
5045
5058
|
* require setup and teardown to be within a hook
|
|
5046
5059
|
* @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/require-hook.md
|
|
@@ -5835,687 +5848,702 @@ interface RuleOptions {
|
|
|
5835
5848
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>
|
|
5836
5849
|
/**
|
|
5837
5850
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
5838
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5851
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/better-regex.md
|
|
5839
5852
|
*/
|
|
5840
5853
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>
|
|
5841
5854
|
/**
|
|
5842
5855
|
* Enforce a specific parameter name in catch clauses.
|
|
5843
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5856
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/catch-error-name.md
|
|
5844
5857
|
*/
|
|
5845
5858
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>
|
|
5846
5859
|
/**
|
|
5847
5860
|
* Use destructured variables over properties.
|
|
5848
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5861
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-destructuring.md
|
|
5849
5862
|
*/
|
|
5850
5863
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>
|
|
5851
5864
|
/**
|
|
5852
5865
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
5853
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5866
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-empty-array-spread.md
|
|
5854
5867
|
*/
|
|
5855
5868
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>
|
|
5869
|
+
/**
|
|
5870
|
+
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
5871
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-existence-index-check.md
|
|
5872
|
+
*/
|
|
5873
|
+
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>
|
|
5856
5874
|
/**
|
|
5857
5875
|
* Move function definitions to the highest possible scope.
|
|
5858
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5876
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/consistent-function-scoping.md
|
|
5859
5877
|
*/
|
|
5860
5878
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>
|
|
5861
5879
|
/**
|
|
5862
5880
|
* Enforce correct `Error` subclassing.
|
|
5863
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5881
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/custom-error-definition.md
|
|
5864
5882
|
*/
|
|
5865
5883
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>
|
|
5866
5884
|
/**
|
|
5867
5885
|
* Enforce no spaces between braces.
|
|
5868
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5886
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/empty-brace-spaces.md
|
|
5869
5887
|
*/
|
|
5870
5888
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>
|
|
5871
5889
|
/**
|
|
5872
5890
|
* Enforce passing a `message` value when creating a built-in error.
|
|
5873
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5891
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/error-message.md
|
|
5874
5892
|
*/
|
|
5875
5893
|
'unicorn/error-message'?: Linter.RuleEntry<[]>
|
|
5876
5894
|
/**
|
|
5877
5895
|
* Require escape sequences to use uppercase values.
|
|
5878
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5896
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/escape-case.md
|
|
5879
5897
|
*/
|
|
5880
5898
|
'unicorn/escape-case'?: Linter.RuleEntry<[]>
|
|
5881
5899
|
/**
|
|
5882
5900
|
* Add expiration conditions to TODO comments.
|
|
5883
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5901
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/expiring-todo-comments.md
|
|
5884
5902
|
*/
|
|
5885
5903
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>
|
|
5886
5904
|
/**
|
|
5887
5905
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
5888
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5906
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/explicit-length-check.md
|
|
5889
5907
|
*/
|
|
5890
5908
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>
|
|
5891
5909
|
/**
|
|
5892
5910
|
* Enforce a case style for filenames.
|
|
5893
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5911
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/filename-case.md
|
|
5894
5912
|
*/
|
|
5895
5913
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>
|
|
5896
5914
|
/**
|
|
5897
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5915
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#import-index
|
|
5898
5916
|
* @deprecated
|
|
5899
5917
|
*/
|
|
5900
5918
|
'unicorn/import-index'?: Linter.RuleEntry<[]>
|
|
5901
5919
|
/**
|
|
5902
5920
|
* Enforce specific import styles per module.
|
|
5903
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5921
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/import-style.md
|
|
5904
5922
|
*/
|
|
5905
5923
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>
|
|
5906
5924
|
/**
|
|
5907
5925
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
5908
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5926
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/new-for-builtins.md
|
|
5909
5927
|
*/
|
|
5910
5928
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>
|
|
5911
5929
|
/**
|
|
5912
5930
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
5913
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5931
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-abusive-eslint-disable.md
|
|
5914
5932
|
*/
|
|
5915
5933
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>
|
|
5916
5934
|
/**
|
|
5917
5935
|
* Disallow anonymous functions and classes as the default export.
|
|
5918
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5936
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-anonymous-default-export.md
|
|
5919
5937
|
*/
|
|
5920
5938
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>
|
|
5921
5939
|
/**
|
|
5922
5940
|
* Prevent passing a function reference directly to iterator methods.
|
|
5923
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5941
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-callback-reference.md
|
|
5924
5942
|
*/
|
|
5925
5943
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>
|
|
5926
5944
|
/**
|
|
5927
5945
|
* Prefer `for…of` over the `forEach` method.
|
|
5928
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5946
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-for-each.md
|
|
5929
5947
|
*/
|
|
5930
5948
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>
|
|
5931
5949
|
/**
|
|
5932
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5950
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-array-instanceof
|
|
5933
5951
|
* @deprecated
|
|
5934
5952
|
*/
|
|
5935
5953
|
'unicorn/no-array-instanceof'?: Linter.RuleEntry<[]>
|
|
5936
5954
|
/**
|
|
5937
5955
|
* Disallow using the `this` argument in array methods.
|
|
5938
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5956
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-method-this-argument.md
|
|
5939
5957
|
*/
|
|
5940
5958
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>
|
|
5941
5959
|
/**
|
|
5942
5960
|
* Enforce combining multiple `Array#push()` into one call.
|
|
5943
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5961
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-push-push.md
|
|
5944
5962
|
*/
|
|
5945
5963
|
'unicorn/no-array-push-push'?: Linter.RuleEntry<UnicornNoArrayPushPush>
|
|
5946
5964
|
/**
|
|
5947
5965
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
5948
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5966
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-array-reduce.md
|
|
5949
5967
|
*/
|
|
5950
5968
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>
|
|
5951
5969
|
/**
|
|
5952
5970
|
* Disallow member access from await expression.
|
|
5953
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5971
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-expression-member.md
|
|
5954
5972
|
*/
|
|
5955
5973
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>
|
|
5956
5974
|
/**
|
|
5957
5975
|
* Disallow using `await` in `Promise` method parameters.
|
|
5958
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5976
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-await-in-promise-methods.md
|
|
5959
5977
|
*/
|
|
5960
5978
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
5961
5979
|
/**
|
|
5962
5980
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
5963
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5981
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-console-spaces.md
|
|
5964
5982
|
*/
|
|
5965
5983
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>
|
|
5966
5984
|
/**
|
|
5967
5985
|
* Do not use `document.cookie` directly.
|
|
5968
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5986
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-document-cookie.md
|
|
5969
5987
|
*/
|
|
5970
5988
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>
|
|
5971
5989
|
/**
|
|
5972
5990
|
* Disallow empty files.
|
|
5973
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5991
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-empty-file.md
|
|
5974
5992
|
*/
|
|
5975
5993
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>
|
|
5976
5994
|
/**
|
|
5977
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5995
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-fn-reference-in-iterator
|
|
5978
5996
|
* @deprecated
|
|
5979
5997
|
*/
|
|
5980
5998
|
'unicorn/no-fn-reference-in-iterator'?: Linter.RuleEntry<[]>
|
|
5981
5999
|
/**
|
|
5982
6000
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
5983
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6001
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-for-loop.md
|
|
5984
6002
|
*/
|
|
5985
6003
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>
|
|
5986
6004
|
/**
|
|
5987
6005
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
5988
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6006
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-hex-escape.md
|
|
5989
6007
|
*/
|
|
5990
6008
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>
|
|
5991
6009
|
/**
|
|
5992
6010
|
* Require `Array.isArray()` instead of `instanceof Array`.
|
|
5993
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6011
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-instanceof-array.md
|
|
5994
6012
|
*/
|
|
5995
6013
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>
|
|
5996
6014
|
/**
|
|
5997
6015
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
5998
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6016
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-fetch-options.md
|
|
5999
6017
|
*/
|
|
6000
6018
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>
|
|
6001
6019
|
/**
|
|
6002
6020
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
6003
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6021
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-invalid-remove-event-listener.md
|
|
6004
6022
|
*/
|
|
6005
6023
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>
|
|
6006
6024
|
/**
|
|
6007
6025
|
* Disallow identifiers starting with `new` or `class`.
|
|
6008
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6026
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-keyword-prefix.md
|
|
6009
6027
|
*/
|
|
6010
6028
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>
|
|
6011
6029
|
/**
|
|
6012
6030
|
* Disallow using `.length` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
6013
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6031
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-length-as-slice-end.md
|
|
6014
6032
|
*/
|
|
6015
6033
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>
|
|
6016
6034
|
/**
|
|
6017
6035
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
6018
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6036
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-lonely-if.md
|
|
6019
6037
|
*/
|
|
6020
6038
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>
|
|
6021
6039
|
/**
|
|
6022
6040
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
6023
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6041
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-magic-array-flat-depth.md
|
|
6024
6042
|
*/
|
|
6025
6043
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>
|
|
6026
6044
|
/**
|
|
6027
6045
|
* Disallow negated conditions.
|
|
6028
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6046
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negated-condition.md
|
|
6029
6047
|
*/
|
|
6030
6048
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>
|
|
6031
6049
|
/**
|
|
6032
6050
|
* Disallow negated expression in equality check.
|
|
6033
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6051
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-negation-in-equality-check.md
|
|
6034
6052
|
*/
|
|
6035
6053
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>
|
|
6036
6054
|
/**
|
|
6037
6055
|
* Disallow nested ternary expressions.
|
|
6038
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6056
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-nested-ternary.md
|
|
6039
6057
|
*/
|
|
6040
6058
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>
|
|
6041
6059
|
/**
|
|
6042
6060
|
* Disallow `new Array()`.
|
|
6043
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6061
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-array.md
|
|
6044
6062
|
*/
|
|
6045
6063
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>
|
|
6046
6064
|
/**
|
|
6047
6065
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
6048
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6066
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-new-buffer.md
|
|
6049
6067
|
*/
|
|
6050
6068
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>
|
|
6051
6069
|
/**
|
|
6052
6070
|
* Disallow the use of the `null` literal.
|
|
6053
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6071
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-null.md
|
|
6054
6072
|
*/
|
|
6055
6073
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>
|
|
6056
6074
|
/**
|
|
6057
6075
|
* Disallow the use of objects as default parameters.
|
|
6058
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6076
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-object-as-default-parameter.md
|
|
6059
6077
|
*/
|
|
6060
6078
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>
|
|
6061
6079
|
/**
|
|
6062
6080
|
* Disallow `process.exit()`.
|
|
6063
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6081
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-process-exit.md
|
|
6064
6082
|
*/
|
|
6065
6083
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>
|
|
6066
6084
|
/**
|
|
6067
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6085
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-reduce
|
|
6068
6086
|
* @deprecated
|
|
6069
6087
|
*/
|
|
6070
6088
|
'unicorn/no-reduce'?: Linter.RuleEntry<[]>
|
|
6071
6089
|
/**
|
|
6072
6090
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
6073
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6091
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-single-promise-in-promise-methods.md
|
|
6074
6092
|
*/
|
|
6075
6093
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>
|
|
6076
6094
|
/**
|
|
6077
6095
|
* Disallow classes that only have static members.
|
|
6078
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6096
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-static-only-class.md
|
|
6079
6097
|
*/
|
|
6080
6098
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>
|
|
6081
6099
|
/**
|
|
6082
6100
|
* Disallow `then` property.
|
|
6083
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6101
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-thenable.md
|
|
6084
6102
|
*/
|
|
6085
6103
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>
|
|
6086
6104
|
/**
|
|
6087
6105
|
* Disallow assigning `this` to a variable.
|
|
6088
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6106
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-this-assignment.md
|
|
6089
6107
|
*/
|
|
6090
6108
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>
|
|
6091
6109
|
/**
|
|
6092
6110
|
* Disallow comparing `undefined` using `typeof`.
|
|
6093
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6111
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-typeof-undefined.md
|
|
6094
6112
|
*/
|
|
6095
6113
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>
|
|
6096
6114
|
/**
|
|
6097
6115
|
* Disallow awaiting non-promise values.
|
|
6098
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6116
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-await.md
|
|
6099
6117
|
*/
|
|
6100
6118
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>
|
|
6101
6119
|
/**
|
|
6102
6120
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
6103
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6121
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unnecessary-polyfills.md
|
|
6104
6122
|
*/
|
|
6105
6123
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>
|
|
6106
6124
|
/**
|
|
6107
6125
|
* Disallow unreadable array destructuring.
|
|
6108
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6126
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-array-destructuring.md
|
|
6109
6127
|
*/
|
|
6110
6128
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>
|
|
6111
6129
|
/**
|
|
6112
6130
|
* Disallow unreadable IIFEs.
|
|
6113
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6131
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unreadable-iife.md
|
|
6114
6132
|
*/
|
|
6115
6133
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>
|
|
6116
6134
|
/**
|
|
6117
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6135
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#no-unsafe-regex
|
|
6118
6136
|
* @deprecated
|
|
6119
6137
|
*/
|
|
6120
6138
|
'unicorn/no-unsafe-regex'?: Linter.RuleEntry<[]>
|
|
6121
6139
|
/**
|
|
6122
6140
|
* Disallow unused object properties.
|
|
6123
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6141
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-unused-properties.md
|
|
6124
6142
|
*/
|
|
6125
6143
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>
|
|
6126
6144
|
/**
|
|
6127
6145
|
* Disallow useless fallback when spreading in object literals.
|
|
6128
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6146
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-fallback-in-spread.md
|
|
6129
6147
|
*/
|
|
6130
6148
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>
|
|
6131
6149
|
/**
|
|
6132
6150
|
* Disallow useless array length check.
|
|
6133
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6151
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-length-check.md
|
|
6134
6152
|
*/
|
|
6135
6153
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>
|
|
6136
6154
|
/**
|
|
6137
6155
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
6138
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6156
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-promise-resolve-reject.md
|
|
6139
6157
|
*/
|
|
6140
6158
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>
|
|
6141
6159
|
/**
|
|
6142
6160
|
* Disallow unnecessary spread.
|
|
6143
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6161
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-spread.md
|
|
6144
6162
|
*/
|
|
6145
6163
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>
|
|
6146
6164
|
/**
|
|
6147
6165
|
* Disallow useless case in switch statements.
|
|
6148
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6166
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-switch-case.md
|
|
6149
6167
|
*/
|
|
6150
6168
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>
|
|
6151
6169
|
/**
|
|
6152
6170
|
* Disallow useless `undefined`.
|
|
6153
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6171
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-useless-undefined.md
|
|
6154
6172
|
*/
|
|
6155
6173
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>
|
|
6156
6174
|
/**
|
|
6157
6175
|
* Disallow number literals with zero fractions or dangling dots.
|
|
6158
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6176
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/no-zero-fractions.md
|
|
6159
6177
|
*/
|
|
6160
6178
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>
|
|
6161
6179
|
/**
|
|
6162
6180
|
* Enforce proper case for numeric literals.
|
|
6163
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6181
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/number-literal-case.md
|
|
6164
6182
|
*/
|
|
6165
6183
|
'unicorn/number-literal-case'?: Linter.RuleEntry<[]>
|
|
6166
6184
|
/**
|
|
6167
6185
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
6168
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6186
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/numeric-separators-style.md
|
|
6169
6187
|
*/
|
|
6170
6188
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>
|
|
6171
6189
|
/**
|
|
6172
6190
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
6173
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6191
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-add-event-listener.md
|
|
6174
6192
|
*/
|
|
6175
6193
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>
|
|
6176
6194
|
/**
|
|
6177
6195
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
6178
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6196
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-find.md
|
|
6179
6197
|
*/
|
|
6180
6198
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>
|
|
6181
6199
|
/**
|
|
6182
6200
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
6183
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6201
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat.md
|
|
6184
6202
|
*/
|
|
6185
6203
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>
|
|
6186
6204
|
/**
|
|
6187
6205
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
6188
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6206
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-flat-map.md
|
|
6189
6207
|
*/
|
|
6190
6208
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>
|
|
6191
6209
|
/**
|
|
6192
6210
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
6193
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6211
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-index-of.md
|
|
6194
6212
|
*/
|
|
6195
6213
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>
|
|
6196
6214
|
/**
|
|
6197
6215
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
6198
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6216
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-array-some.md
|
|
6199
6217
|
*/
|
|
6200
6218
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>
|
|
6201
6219
|
/**
|
|
6202
6220
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
6203
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6221
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-at.md
|
|
6204
6222
|
*/
|
|
6205
6223
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>
|
|
6206
6224
|
/**
|
|
6207
6225
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
6208
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6226
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-blob-reading-methods.md
|
|
6209
6227
|
*/
|
|
6210
6228
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>
|
|
6211
6229
|
/**
|
|
6212
6230
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
6213
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6231
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-code-point.md
|
|
6214
6232
|
*/
|
|
6215
6233
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>
|
|
6216
6234
|
/**
|
|
6217
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6235
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-dataset
|
|
6218
6236
|
* @deprecated
|
|
6219
6237
|
*/
|
|
6220
6238
|
'unicorn/prefer-dataset'?: Linter.RuleEntry<[]>
|
|
6221
6239
|
/**
|
|
6222
6240
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
6223
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6241
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-date-now.md
|
|
6224
6242
|
*/
|
|
6225
6243
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>
|
|
6226
6244
|
/**
|
|
6227
6245
|
* Prefer default parameters over reassignment.
|
|
6228
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6246
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-default-parameters.md
|
|
6229
6247
|
*/
|
|
6230
6248
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>
|
|
6231
6249
|
/**
|
|
6232
6250
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
6233
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6251
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-append.md
|
|
6234
6252
|
*/
|
|
6235
6253
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>
|
|
6236
6254
|
/**
|
|
6237
6255
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
6238
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6256
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-dataset.md
|
|
6239
6257
|
*/
|
|
6240
6258
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>
|
|
6241
6259
|
/**
|
|
6242
6260
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
6243
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6261
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-remove.md
|
|
6244
6262
|
*/
|
|
6245
6263
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>
|
|
6246
6264
|
/**
|
|
6247
6265
|
* Prefer `.textContent` over `.innerText`.
|
|
6248
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6266
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-dom-node-text-content.md
|
|
6249
6267
|
*/
|
|
6250
6268
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>
|
|
6251
6269
|
/**
|
|
6252
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6270
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-event-key
|
|
6253
6271
|
* @deprecated
|
|
6254
6272
|
*/
|
|
6255
6273
|
'unicorn/prefer-event-key'?: Linter.RuleEntry<[]>
|
|
6256
6274
|
/**
|
|
6257
6275
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
6258
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6276
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-event-target.md
|
|
6259
6277
|
*/
|
|
6260
6278
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>
|
|
6261
6279
|
/**
|
|
6262
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6280
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-exponentiation-operator
|
|
6263
6281
|
* @deprecated
|
|
6264
6282
|
*/
|
|
6265
6283
|
'unicorn/prefer-exponentiation-operator'?: Linter.RuleEntry<[]>
|
|
6266
6284
|
/**
|
|
6267
6285
|
* Prefer `export…from` when re-exporting.
|
|
6268
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6286
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-export-from.md
|
|
6269
6287
|
*/
|
|
6270
6288
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>
|
|
6271
6289
|
/**
|
|
6272
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6290
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-flat-map
|
|
6273
6291
|
* @deprecated
|
|
6274
6292
|
*/
|
|
6275
6293
|
'unicorn/prefer-flat-map'?: Linter.RuleEntry<[]>
|
|
6294
|
+
/**
|
|
6295
|
+
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
6296
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-global-this.md
|
|
6297
|
+
*/
|
|
6298
|
+
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>
|
|
6276
6299
|
/**
|
|
6277
6300
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
6278
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6301
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-includes.md
|
|
6279
6302
|
*/
|
|
6280
6303
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>
|
|
6281
6304
|
/**
|
|
6282
6305
|
* Prefer reading a JSON file as a buffer.
|
|
6283
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6306
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-json-parse-buffer.md
|
|
6284
6307
|
*/
|
|
6285
6308
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>
|
|
6286
6309
|
/**
|
|
6287
6310
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
6288
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6311
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-keyboard-event-key.md
|
|
6289
6312
|
*/
|
|
6290
6313
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>
|
|
6291
6314
|
/**
|
|
6292
6315
|
* Prefer using a logical operator over a ternary.
|
|
6293
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6316
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-logical-operator-over-ternary.md
|
|
6294
6317
|
*/
|
|
6295
6318
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>
|
|
6319
|
+
/**
|
|
6320
|
+
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
6321
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-min-max.md
|
|
6322
|
+
*/
|
|
6323
|
+
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>
|
|
6296
6324
|
/**
|
|
6297
6325
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
6298
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6326
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-math-trunc.md
|
|
6299
6327
|
*/
|
|
6300
6328
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>
|
|
6301
6329
|
/**
|
|
6302
6330
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
6303
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6331
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-dom-apis.md
|
|
6304
6332
|
*/
|
|
6305
6333
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>
|
|
6306
6334
|
/**
|
|
6307
6335
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
6308
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6336
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-modern-math-apis.md
|
|
6309
6337
|
*/
|
|
6310
6338
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>
|
|
6311
6339
|
/**
|
|
6312
6340
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
6313
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6341
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-module.md
|
|
6314
6342
|
*/
|
|
6315
6343
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>
|
|
6316
6344
|
/**
|
|
6317
6345
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
6318
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6346
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-native-coercion-functions.md
|
|
6319
6347
|
*/
|
|
6320
6348
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>
|
|
6321
6349
|
/**
|
|
6322
6350
|
* Prefer negative index over `.length - index` when possible.
|
|
6323
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6351
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-negative-index.md
|
|
6324
6352
|
*/
|
|
6325
6353
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>
|
|
6326
6354
|
/**
|
|
6327
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6355
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-append
|
|
6328
6356
|
* @deprecated
|
|
6329
6357
|
*/
|
|
6330
6358
|
'unicorn/prefer-node-append'?: Linter.RuleEntry<[]>
|
|
6331
6359
|
/**
|
|
6332
6360
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
6333
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6361
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-node-protocol.md
|
|
6334
6362
|
*/
|
|
6335
6363
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>
|
|
6336
6364
|
/**
|
|
6337
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6365
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-node-remove
|
|
6338
6366
|
* @deprecated
|
|
6339
6367
|
*/
|
|
6340
6368
|
'unicorn/prefer-node-remove'?: Linter.RuleEntry<[]>
|
|
6341
6369
|
/**
|
|
6342
6370
|
* Prefer `Number` static properties over global ones.
|
|
6343
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6371
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-number-properties.md
|
|
6344
6372
|
*/
|
|
6345
6373
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>
|
|
6346
6374
|
/**
|
|
6347
6375
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
6348
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6376
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-object-from-entries.md
|
|
6349
6377
|
*/
|
|
6350
6378
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>
|
|
6351
6379
|
/**
|
|
6352
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6380
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-object-has-own
|
|
6353
6381
|
* @deprecated
|
|
6354
6382
|
*/
|
|
6355
6383
|
'unicorn/prefer-object-has-own'?: Linter.RuleEntry<[]>
|
|
6356
6384
|
/**
|
|
6357
6385
|
* Prefer omitting the `catch` binding parameter.
|
|
6358
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6386
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-optional-catch-binding.md
|
|
6359
6387
|
*/
|
|
6360
6388
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>
|
|
6361
6389
|
/**
|
|
6362
6390
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
6363
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6391
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-prototype-methods.md
|
|
6364
6392
|
*/
|
|
6365
6393
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>
|
|
6366
6394
|
/**
|
|
6367
|
-
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()`.
|
|
6368
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6395
|
+
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
6396
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-query-selector.md
|
|
6369
6397
|
*/
|
|
6370
6398
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>
|
|
6371
6399
|
/**
|
|
6372
6400
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
6373
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6401
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-reflect-apply.md
|
|
6374
6402
|
*/
|
|
6375
6403
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>
|
|
6376
6404
|
/**
|
|
6377
6405
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
6378
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6406
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-regexp-test.md
|
|
6379
6407
|
*/
|
|
6380
6408
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>
|
|
6381
6409
|
/**
|
|
6382
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6410
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-replace-all
|
|
6383
6411
|
* @deprecated
|
|
6384
6412
|
*/
|
|
6385
6413
|
'unicorn/prefer-replace-all'?: Linter.RuleEntry<[]>
|
|
6386
6414
|
/**
|
|
6387
6415
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
6388
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6416
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-has.md
|
|
6389
6417
|
*/
|
|
6390
6418
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>
|
|
6391
6419
|
/**
|
|
6392
6420
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
6393
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6421
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-set-size.md
|
|
6394
6422
|
*/
|
|
6395
6423
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>
|
|
6396
6424
|
/**
|
|
6397
6425
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
6398
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6426
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-spread.md
|
|
6399
6427
|
*/
|
|
6400
6428
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>
|
|
6401
6429
|
/**
|
|
6402
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6430
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-starts-ends-with
|
|
6403
6431
|
* @deprecated
|
|
6404
6432
|
*/
|
|
6405
6433
|
'unicorn/prefer-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
6406
6434
|
/**
|
|
6407
6435
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
6408
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6436
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-raw.md
|
|
6409
6437
|
*/
|
|
6410
6438
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>
|
|
6411
6439
|
/**
|
|
6412
6440
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
6413
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6441
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-replace-all.md
|
|
6414
6442
|
*/
|
|
6415
6443
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>
|
|
6416
6444
|
/**
|
|
6417
6445
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
6418
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6446
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-slice.md
|
|
6419
6447
|
*/
|
|
6420
6448
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>
|
|
6421
6449
|
/**
|
|
6422
6450
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
6423
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6451
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-starts-ends-with.md
|
|
6424
6452
|
*/
|
|
6425
6453
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>
|
|
6426
6454
|
/**
|
|
6427
6455
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
6428
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6456
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-string-trim-start-end.md
|
|
6429
6457
|
*/
|
|
6430
6458
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>
|
|
6431
6459
|
/**
|
|
6432
6460
|
* Prefer using `structuredClone` to create a deep clone.
|
|
6433
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6461
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-structured-clone.md
|
|
6434
6462
|
*/
|
|
6435
6463
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>
|
|
6436
6464
|
/**
|
|
6437
6465
|
* Prefer `switch` over multiple `else-if`.
|
|
6438
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6466
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-switch.md
|
|
6439
6467
|
*/
|
|
6440
6468
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>
|
|
6441
6469
|
/**
|
|
6442
6470
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
6443
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6471
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-ternary.md
|
|
6444
6472
|
*/
|
|
6445
6473
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>
|
|
6446
6474
|
/**
|
|
6447
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6475
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-text-content
|
|
6448
6476
|
* @deprecated
|
|
6449
6477
|
*/
|
|
6450
6478
|
'unicorn/prefer-text-content'?: Linter.RuleEntry<[]>
|
|
6451
6479
|
/**
|
|
6452
6480
|
* Prefer top-level await over top-level promises and async function calls.
|
|
6453
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6481
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-top-level-await.md
|
|
6454
6482
|
*/
|
|
6455
6483
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>
|
|
6456
6484
|
/**
|
|
6457
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6485
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#prefer-trim-start-end
|
|
6458
6486
|
* @deprecated
|
|
6459
6487
|
*/
|
|
6460
6488
|
'unicorn/prefer-trim-start-end'?: Linter.RuleEntry<[]>
|
|
6461
6489
|
/**
|
|
6462
6490
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
6463
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6491
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prefer-type-error.md
|
|
6464
6492
|
*/
|
|
6465
6493
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>
|
|
6466
6494
|
/**
|
|
6467
6495
|
* Prevent abbreviations.
|
|
6468
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6496
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/prevent-abbreviations.md
|
|
6469
6497
|
*/
|
|
6470
6498
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>
|
|
6471
6499
|
/**
|
|
6472
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6500
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/deprecated-rules.md#regex-shorthand
|
|
6473
6501
|
* @deprecated
|
|
6474
6502
|
*/
|
|
6475
6503
|
'unicorn/regex-shorthand'?: Linter.RuleEntry<[]>
|
|
6476
6504
|
/**
|
|
6477
6505
|
* Enforce consistent relative URL style.
|
|
6478
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6506
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/relative-url-style.md
|
|
6479
6507
|
*/
|
|
6480
6508
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>
|
|
6481
6509
|
/**
|
|
6482
6510
|
* Enforce using the separator argument with `Array#join()`.
|
|
6483
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6511
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-array-join-separator.md
|
|
6484
6512
|
*/
|
|
6485
6513
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>
|
|
6486
6514
|
/**
|
|
6487
6515
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
6488
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6516
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-number-to-fixed-digits-argument.md
|
|
6489
6517
|
*/
|
|
6490
6518
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>
|
|
6491
6519
|
/**
|
|
6492
6520
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
6493
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6521
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/require-post-message-target-origin.md
|
|
6494
6522
|
*/
|
|
6495
6523
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>
|
|
6496
6524
|
/**
|
|
6497
6525
|
* Enforce better string content.
|
|
6498
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6526
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/string-content.md
|
|
6499
6527
|
*/
|
|
6500
6528
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>
|
|
6501
6529
|
/**
|
|
6502
6530
|
* Enforce consistent brace style for `case` clauses.
|
|
6503
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6531
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/switch-case-braces.md
|
|
6504
6532
|
*/
|
|
6505
6533
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>
|
|
6506
6534
|
/**
|
|
6507
6535
|
* Fix whitespace-insensitive template indentation.
|
|
6508
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6536
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/template-indent.md
|
|
6509
6537
|
*/
|
|
6510
6538
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>
|
|
6511
6539
|
/**
|
|
6512
6540
|
* Enforce consistent case for text encoding identifiers.
|
|
6513
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6541
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/text-encoding-identifier-case.md
|
|
6514
6542
|
*/
|
|
6515
6543
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>
|
|
6516
6544
|
/**
|
|
6517
6545
|
* Require `new` when creating an error.
|
|
6518
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6546
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v56.0.0/docs/rules/throw-new-error.md
|
|
6519
6547
|
*/
|
|
6520
6548
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>
|
|
6521
6549
|
/**
|
|
@@ -6899,6 +6927,11 @@ interface RuleOptions {
|
|
|
6899
6927
|
* @see https://eslint.vuejs.org/rules/no-deprecated-data-object-declaration.html
|
|
6900
6928
|
*/
|
|
6901
6929
|
'vue/no-deprecated-data-object-declaration'?: Linter.RuleEntry<[]>
|
|
6930
|
+
/**
|
|
6931
|
+
* disallow using deprecated `$delete` and `$set` (in Vue.js 3.0.0+)
|
|
6932
|
+
* @see https://eslint.vuejs.org/rules/no-deprecated-delete-set.html
|
|
6933
|
+
*/
|
|
6934
|
+
'vue/no-deprecated-delete-set'?: Linter.RuleEntry<[]>
|
|
6902
6935
|
/**
|
|
6903
6936
|
* disallow using deprecated `destroyed` and `beforeDestroy` lifecycle hooks (in Vue.js 3.0.0+)
|
|
6904
6937
|
* @see https://eslint.vuejs.org/rules/no-deprecated-destroyed-lifecycle.html
|
|
@@ -10190,7 +10223,7 @@ type NodeHashbang = []|[{
|
|
|
10190
10223
|
// ----- node/no-deprecated-api -----
|
|
10191
10224
|
type NodeNoDeprecatedApi = []|[{
|
|
10192
10225
|
version?: string
|
|
10193
|
-
ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext")[]
|
|
10226
|
+
ignoreModuleItems?: ("_linklist" | "_stream_wrap" | "async_hooks.currentId" | "async_hooks.triggerId" | "buffer.Buffer()" | "new buffer.Buffer()" | "buffer.SlowBuffer" | "constants" | "crypto._toBuf" | "crypto.Credentials" | "crypto.DEFAULT_ENCODING" | "crypto.createCipher" | "crypto.createCredentials" | "crypto.createDecipher" | "crypto.fips" | "crypto.prng" | "crypto.pseudoRandomBytes" | "crypto.rng" | "domain" | "events.EventEmitter.listenerCount" | "events.listenerCount" | "freelist" | "fs.SyncWriteStream" | "fs.exists" | "fs.lchmod" | "fs.lchmodSync" | "http.createClient" | "module.Module.createRequireFromPath" | "module.Module.requireRepl" | "module.Module._debug" | "module.createRequireFromPath" | "module.requireRepl" | "module._debug" | "net._setSimultaneousAccepts" | "os.getNetworkInterfaces" | "os.tmpDir" | "path._makeLong" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport" | "punycode" | "readline.codePointAt" | "readline.getStringWidth" | "readline.isFullWidthCodePoint" | "readline.stripVTControlCharacters" | "repl.REPLServer" | "repl.Recoverable" | "repl.REPL_MODE_MAGIC" | "safe-buffer.Buffer()" | "new safe-buffer.Buffer()" | "safe-buffer.SlowBuffer" | "sys" | "timers.enroll" | "timers.unenroll" | "tls.CleartextStream" | "tls.CryptoStream" | "tls.SecurePair" | "tls.convertNPNProtocols" | "tls.createSecurePair" | "tls.parseCertString" | "tty.setRawMode" | "url.parse" | "url.resolve" | "util.debug" | "util.error" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util.print" | "util.pump" | "util.puts" | "util._extend" | "vm.runInDebugContext" | "zlib.BrotliCompress()" | "zlib.BrotliDecompress()" | "zlib.Deflate()" | "zlib.DeflateRaw()" | "zlib.Gunzip()" | "zlib.Gzip()" | "zlib.Inflate()" | "zlib.InflateRaw()" | "zlib.Unzip()")[]
|
|
10194
10227
|
ignoreGlobalItems?: ("Buffer()" | "new Buffer()" | "COUNTER_NET_SERVER_CONNECTION" | "COUNTER_NET_SERVER_CONNECTION_CLOSE" | "COUNTER_HTTP_SERVER_REQUEST" | "COUNTER_HTTP_SERVER_RESPONSE" | "COUNTER_HTTP_CLIENT_REQUEST" | "COUNTER_HTTP_CLIENT_RESPONSE" | "GLOBAL" | "Intl.v8BreakIterator" | "require.extensions" | "root" | "process.EventEmitter" | "process.assert" | "process.binding" | "process.env.NODE_REPL_HISTORY_FILE" | "process.report.triggerReport")[]
|
|
10195
10228
|
ignoreIndirectDependencies?: boolean
|
|
10196
10229
|
}]
|
|
@@ -10248,6 +10281,7 @@ type NodeNoMissingImport = []|[{
|
|
|
10248
10281
|
allowModules?: string[]
|
|
10249
10282
|
resolvePaths?: string[]
|
|
10250
10283
|
tryExtensions?: string[]
|
|
10284
|
+
ignoreTypeImport?: boolean
|
|
10251
10285
|
tsconfigPath?: string
|
|
10252
10286
|
typescriptExtensionMap?: (unknown[][] | ("react" | "react-jsx" | "react-jsxdev" | "react-native" | "preserve"))
|
|
10253
10287
|
}]
|
|
@@ -10264,6 +10298,10 @@ type NodeNoMixedRequires = []|[(boolean | {
|
|
|
10264
10298
|
grouping?: boolean
|
|
10265
10299
|
allowCall?: boolean
|
|
10266
10300
|
})]
|
|
10301
|
+
// ----- node/no-process-env -----
|
|
10302
|
+
type NodeNoProcessEnv = []|[{
|
|
10303
|
+
allowedVariables?: string[]
|
|
10304
|
+
}]
|
|
10267
10305
|
// ----- node/no-restricted-import -----
|
|
10268
10306
|
type NodeNoRestrictedImport = []|[(string | {
|
|
10269
10307
|
name: (string | string[])
|
|
@@ -10358,7 +10396,7 @@ type NodeNoUnsupportedFeaturesEsSyntax = []|[{
|
|
|
10358
10396
|
type NodeNoUnsupportedFeaturesNodeBuiltins = []|[{
|
|
10359
10397
|
version?: string
|
|
10360
10398
|
allowExperimental?: boolean
|
|
10361
|
-
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.createRequire" | "module.createRequireFromPath" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress" | "zlib.BrotliDecompress" | "zlib.Deflate" | "zlib.DeflateRaw" | "zlib.Gunzip" | "zlib.Gzip" | "zlib.Inflate" | "zlib.InflateRaw" | "zlib.Unzip" | "zlib")[]
|
|
10399
|
+
ignores?: ("__filename" | "__dirname" | "require" | "require.cache" | "require.extensions" | "require.main" | "require.resolve" | "require.resolve.paths" | "module" | "module.children" | "module.exports" | "module.filename" | "module.id" | "module.isPreloading" | "module.loaded" | "module.parent" | "module.path" | "module.paths" | "module.require" | "exports" | "AbortController" | "AbortSignal" | "AbortSignal.abort" | "AbortSignal.timeout" | "AbortSignal.any" | "DOMException" | "FormData" | "Headers" | "MessageEvent" | "Navigator" | "Request" | "Response" | "WebAssembly" | "WebSocket" | "fetch" | "global" | "queueMicrotask" | "navigator" | "navigator.hardwareConcurrency" | "navigator.language" | "navigator.languages" | "navigator.platform" | "navigator.userAgent" | "structuredClone" | "localStorage" | "sessionStorage" | "Storage" | "Blob" | "new Buffer()" | "Buffer" | "Buffer.alloc" | "Buffer.allocUnsafe" | "Buffer.allocUnsafeSlow" | "Buffer.byteLength" | "Buffer.compare" | "Buffer.concat" | "Buffer.copyBytesFrom" | "Buffer.from" | "Buffer.isBuffer" | "Buffer.isEncoding" | "File" | "atob" | "btoa" | "console" | "console.profile" | "console.profileEnd" | "console.timeStamp" | "console.Console" | "console.assert" | "console.clear" | "console.count" | "console.countReset" | "console.debug" | "console.dir" | "console.dirxml" | "console.error" | "console.group" | "console.groupCollapsed" | "console.groupEnd" | "console.info" | "console.log" | "console.table" | "console.time" | "console.timeEnd" | "console.timeLog" | "console.trace" | "console.warn" | "crypto" | "crypto.subtle" | "crypto.subtle.decrypt" | "crypto.subtle.deriveBits" | "crypto.subtle.deriveKey" | "crypto.subtle.digest" | "crypto.subtle.encrypt" | "crypto.subtle.exportKey" | "crypto.subtle.generateKey" | "crypto.subtle.importKey" | "crypto.subtle.sign" | "crypto.subtle.unwrapKey" | "crypto.subtle.verify" | "crypto.subtle.wrapKey" | "crypto.getRandomValues" | "crypto.randomUUID" | "Crypto" | "CryptoKey" | "SubtleCrypto" | "CustomEvent" | "Event" | "EventTarget" | "PerformanceEntry" | "PerformanceMark" | "PerformanceMeasure" | "PerformanceObserver" | "PerformanceObserverEntryList" | "PerformanceResourceTiming" | "performance" | "performance.clearMarks" | "performance.clearMeasures" | "performance.clearResourceTimings" | "performance.eventLoopUtilization" | "performance.getEntries" | "performance.getEntriesByName" | "performance.getEntriesByType" | "performance.mark" | "performance.markResourceTiming" | "performance.measure" | "performance.nodeTiming" | "performance.nodeTiming.bootstrapComplete" | "performance.nodeTiming.environment" | "performance.nodeTiming.idleTime" | "performance.nodeTiming.loopExit" | "performance.nodeTiming.loopStart" | "performance.nodeTiming.nodeStart" | "performance.nodeTiming.uvMetricsInfo" | "performance.nodeTiming.v8Start" | "performance.now" | "performance.onresourcetimingbufferfull" | "performance.setResourceTimingBufferSize" | "performance.timeOrigin" | "performance.timerify" | "performance.toJSON" | "process" | "process.allowedNodeEnvironmentFlags" | "process.availableMemory" | "process.arch" | "process.argv" | "process.argv0" | "process.channel" | "process.config" | "process.connected" | "process.debugPort" | "process.env" | "process.execArgv" | "process.execPath" | "process.exitCode" | "process.finalization.register" | "process.finalization.registerBeforeExit" | "process.finalization.unregister" | "process.getBuiltinModule" | "process.mainModule" | "process.noDeprecation" | "process.permission" | "process.pid" | "process.platform" | "process.ppid" | "process.release" | "process.report" | "process.sourceMapsEnabled" | "process.stdin" | "process.stdin.isRaw" | "process.stdin.isTTY" | "process.stdin.setRawMode" | "process.stdout" | "process.stdout.clearLine" | "process.stdout.clearScreenDown" | "process.stdout.columns" | "process.stdout.cursorTo" | "process.stdout.getColorDepth" | "process.stdout.getWindowSize" | "process.stdout.hasColors" | "process.stdout.isTTY" | "process.stdout.moveCursor" | "process.stdout.rows" | "process.stderr" | "process.stderr.clearLine" | "process.stderr.clearScreenDown" | "process.stderr.columns" | "process.stderr.cursorTo" | "process.stderr.getColorDepth" | "process.stderr.getWindowSize" | "process.stderr.hasColors" | "process.stderr.isTTY" | "process.stderr.moveCursor" | "process.stderr.rows" | "process.throwDeprecation" | "process.title" | "process.traceDeprecation" | "process.version" | "process.versions" | "process.abort" | "process.chdir" | "process.constrainedMemory" | "process.cpuUsage" | "process.cwd" | "process.disconnect" | "process.dlopen" | "process.emitWarning" | "process.exit" | "process.getActiveResourcesInfo" | "process.getegid" | "process.geteuid" | "process.getgid" | "process.getgroups" | "process.getuid" | "process.hasUncaughtExceptionCaptureCallback" | "process.hrtime" | "process.hrtime.bigint" | "process.initgroups" | "process.kill" | "process.loadEnvFile" | "process.memoryUsage" | "process.rss" | "process.nextTick" | "process.resourceUsage" | "process.send" | "process.setegid" | "process.seteuid" | "process.setgid" | "process.setgroups" | "process.setuid" | "process.setSourceMapsEnabled" | "process.setUncaughtExceptionCaptureCallback" | "process.umask" | "process.uptime" | "ReadableStream" | "ReadableStream.from" | "ReadableStreamDefaultReader" | "ReadableStreamBYOBReader" | "ReadableStreamDefaultController" | "ReadableByteStreamController" | "ReadableStreamBYOBRequest" | "WritableStream" | "WritableStreamDefaultWriter" | "WritableStreamDefaultController" | "TransformStream" | "TransformStreamDefaultController" | "ByteLengthQueuingStrategy" | "CountQueuingStrategy" | "TextEncoderStream" | "TextDecoderStream" | "CompressionStream" | "DecompressionStream" | "setInterval" | "clearInterval" | "setTimeout" | "clearTimeout" | "setImmediate" | "clearImmediate" | "URL" | "URL.canParse" | "URL.createObjectURL" | "URL.revokeObjectURL" | "URLSearchParams" | "TextDecoder" | "TextEncoder" | "BroadcastChannel" | "MessageChannel" | "MessagePort" | "assert" | "assert.assert" | "assert.deepEqual" | "assert.deepStrictEqual" | "assert.doesNotMatch" | "assert.doesNotReject" | "assert.doesNotThrow" | "assert.equal" | "assert.fail" | "assert.ifError" | "assert.match" | "assert.notDeepEqual" | "assert.notDeepStrictEqual" | "assert.notEqual" | "assert.notStrictEqual" | "assert.ok" | "assert.rejects" | "assert.strictEqual" | "assert.throws" | "assert.CallTracker" | "assert.strict" | "assert.strict.assert" | "assert.strict.deepEqual" | "assert.strict.deepStrictEqual" | "assert.strict.doesNotMatch" | "assert.strict.doesNotReject" | "assert.strict.doesNotThrow" | "assert.strict.equal" | "assert.strict.fail" | "assert.strict.ifError" | "assert.strict.match" | "assert.strict.notDeepEqual" | "assert.strict.notDeepStrictEqual" | "assert.strict.notEqual" | "assert.strict.notStrictEqual" | "assert.strict.ok" | "assert.strict.rejects" | "assert.strict.strictEqual" | "assert.strict.throws" | "assert.strict.CallTracker" | "assert/strict" | "assert/strict.assert" | "assert/strict.deepEqual" | "assert/strict.deepStrictEqual" | "assert/strict.doesNotMatch" | "assert/strict.doesNotReject" | "assert/strict.doesNotThrow" | "assert/strict.equal" | "assert/strict.fail" | "assert/strict.ifError" | "assert/strict.match" | "assert/strict.notDeepEqual" | "assert/strict.notDeepStrictEqual" | "assert/strict.notEqual" | "assert/strict.notStrictEqual" | "assert/strict.ok" | "assert/strict.rejects" | "assert/strict.strictEqual" | "assert/strict.throws" | "assert/strict.CallTracker" | "async_hooks" | "async_hooks.createHook" | "async_hooks.executionAsyncResource" | "async_hooks.executionAsyncId" | "async_hooks.triggerAsyncId" | "async_hooks.AsyncLocalStorage" | "async_hooks.AsyncLocalStorage.bind" | "async_hooks.AsyncLocalStorage.snapshot" | "async_hooks.AsyncResource" | "async_hooks.AsyncResource.bind" | "buffer" | "buffer.constants" | "buffer.INSPECT_MAX_BYTES" | "buffer.kMaxLength" | "buffer.kStringMaxLength" | "buffer.atob" | "buffer.btoa" | "buffer.isAscii" | "buffer.isUtf8" | "buffer.resolveObjectURL" | "buffer.transcode" | "buffer.SlowBuffer" | "buffer.Blob" | "new buffer.Buffer()" | "buffer.Buffer" | "buffer.Buffer.alloc" | "buffer.Buffer.allocUnsafe" | "buffer.Buffer.allocUnsafeSlow" | "buffer.Buffer.byteLength" | "buffer.Buffer.compare" | "buffer.Buffer.concat" | "buffer.Buffer.copyBytesFrom" | "buffer.Buffer.from" | "buffer.Buffer.isBuffer" | "buffer.Buffer.isEncoding" | "buffer.File" | "child_process" | "child_process.exec" | "child_process.execFile" | "child_process.fork" | "child_process.spawn" | "child_process.execFileSync" | "child_process.execSync" | "child_process.spawnSync" | "child_process.ChildProcess" | "cluster" | "cluster.isMaster" | "cluster.isPrimary" | "cluster.isWorker" | "cluster.schedulingPolicy" | "cluster.settings" | "cluster.worker" | "cluster.workers" | "cluster.disconnect" | "cluster.fork" | "cluster.setupMaster" | "cluster.setupPrimary" | "cluster.Worker" | "crypto.constants" | "crypto.fips" | "crypto.webcrypto" | "crypto.webcrypto.subtle" | "crypto.webcrypto.subtle.decrypt" | "crypto.webcrypto.subtle.deriveBits" | "crypto.webcrypto.subtle.deriveKey" | "crypto.webcrypto.subtle.digest" | "crypto.webcrypto.subtle.encrypt" | "crypto.webcrypto.subtle.exportKey" | "crypto.webcrypto.subtle.generateKey" | "crypto.webcrypto.subtle.importKey" | "crypto.webcrypto.subtle.sign" | "crypto.webcrypto.subtle.unwrapKey" | "crypto.webcrypto.subtle.verify" | "crypto.webcrypto.subtle.wrapKey" | "crypto.webcrypto.getRandomValues" | "crypto.webcrypto.randomUUID" | "crypto.checkPrime" | "crypto.checkPrimeSync" | "crypto.createCipher" | "crypto.createCipheriv" | "crypto.createDecipher" | "crypto.createDecipheriv" | "crypto.createDiffieHellman" | "crypto.createDiffieHellmanGroup" | "crypto.createECDH" | "crypto.createHash" | "crypto.createHmac" | "crypto.createPrivateKey" | "crypto.createPublicKey" | "crypto.createSecretKey" | "crypto.createSign" | "crypto.createVerify" | "crypto.diffieHellman" | "crypto.generateKey" | "crypto.generateKeyPair" | "crypto.generateKeyPairSync" | "crypto.generateKeySync" | "crypto.generatePrime" | "crypto.generatePrimeSync" | "crypto.getCipherInfo" | "crypto.getCiphers" | "crypto.getCurves" | "crypto.getDiffieHellman" | "crypto.getFips" | "crypto.getHashes" | "crypto.hash" | "crypto.hkdf" | "crypto.hkdfSync" | "crypto.pbkdf2" | "crypto.pbkdf2Sync" | "crypto.privateDecrypt" | "crypto.privateEncrypt" | "crypto.publicDecrypt" | "crypto.publicEncrypt" | "crypto.randomBytes" | "crypto.randomFillSync" | "crypto.randomFill" | "crypto.randomInt" | "crypto.scrypt" | "crypto.scryptSync" | "crypto.secureHeapUsed" | "crypto.setEngine" | "crypto.setFips" | "crypto.sign" | "crypto.timingSafeEqual" | "crypto.verify" | "crypto.Certificate" | "crypto.Certificate.exportChallenge" | "crypto.Certificate.exportPublicKey" | "crypto.Certificate.verifySpkac" | "crypto.Cipher" | "crypto.Decipher" | "crypto.DiffieHellman" | "crypto.DiffieHellmanGroup" | "crypto.ECDH" | "crypto.ECDH.convertKey" | "crypto.Hash()" | "new crypto.Hash()" | "crypto.Hash" | "crypto.Hmac()" | "new crypto.Hmac()" | "crypto.Hmac" | "crypto.KeyObject" | "crypto.KeyObject.from" | "crypto.Sign" | "crypto.Verify" | "crypto.X509Certificate" | "dgram" | "dgram.createSocket" | "dgram.Socket" | "diagnostics_channel" | "diagnostics_channel.hasSubscribers" | "diagnostics_channel.channel" | "diagnostics_channel.subscribe" | "diagnostics_channel.unsubscribe" | "diagnostics_channel.tracingChannel" | "diagnostics_channel.Channel" | "diagnostics_channel.TracingChannel" | "dns" | "dns.Resolver" | "dns.getServers" | "dns.lookup" | "dns.lookupService" | "dns.resolve" | "dns.resolve4" | "dns.resolve6" | "dns.resolveAny" | "dns.resolveCname" | "dns.resolveCaa" | "dns.resolveMx" | "dns.resolveNaptr" | "dns.resolveNs" | "dns.resolvePtr" | "dns.resolveSoa" | "dns.resolveSrv" | "dns.resolveTxt" | "dns.reverse" | "dns.setDefaultResultOrder" | "dns.getDefaultResultOrder" | "dns.setServers" | "dns.promises" | "dns.promises.Resolver" | "dns.promises.cancel" | "dns.promises.getServers" | "dns.promises.lookup" | "dns.promises.lookupService" | "dns.promises.resolve" | "dns.promises.resolve4" | "dns.promises.resolve6" | "dns.promises.resolveAny" | "dns.promises.resolveCaa" | "dns.promises.resolveCname" | "dns.promises.resolveMx" | "dns.promises.resolveNaptr" | "dns.promises.resolveNs" | "dns.promises.resolvePtr" | "dns.promises.resolveSoa" | "dns.promises.resolveSrv" | "dns.promises.resolveTxt" | "dns.promises.reverse" | "dns.promises.setDefaultResultOrder" | "dns.promises.getDefaultResultOrder" | "dns.promises.setServers" | "dns/promises" | "dns/promises.Resolver" | "dns/promises.cancel" | "dns/promises.getServers" | "dns/promises.lookup" | "dns/promises.lookupService" | "dns/promises.resolve" | "dns/promises.resolve4" | "dns/promises.resolve6" | "dns/promises.resolveAny" | "dns/promises.resolveCaa" | "dns/promises.resolveCname" | "dns/promises.resolveMx" | "dns/promises.resolveNaptr" | "dns/promises.resolveNs" | "dns/promises.resolvePtr" | "dns/promises.resolveSoa" | "dns/promises.resolveSrv" | "dns/promises.resolveTxt" | "dns/promises.reverse" | "dns/promises.setDefaultResultOrder" | "dns/promises.getDefaultResultOrder" | "dns/promises.setServers" | "domain" | "domain.create" | "domain.Domain" | "events" | "events.Event" | "events.EventTarget" | "events.CustomEvent" | "events.NodeEventTarget" | "events.EventEmitter" | "events.EventEmitter.defaultMaxListeners" | "events.EventEmitter.errorMonitor" | "events.EventEmitter.captureRejections" | "events.EventEmitter.captureRejectionSymbol" | "events.EventEmitter.getEventListeners" | "events.EventEmitter.getMaxListeners" | "events.EventEmitter.once" | "events.EventEmitter.listenerCount" | "events.EventEmitter.on" | "events.EventEmitter.setMaxListeners" | "events.EventEmitter.addAbortListener" | "events.EventEmitterAsyncResource" | "events.EventEmitterAsyncResource.defaultMaxListeners" | "events.EventEmitterAsyncResource.errorMonitor" | "events.EventEmitterAsyncResource.captureRejections" | "events.EventEmitterAsyncResource.captureRejectionSymbol" | "events.EventEmitterAsyncResource.getEventListeners" | "events.EventEmitterAsyncResource.getMaxListeners" | "events.EventEmitterAsyncResource.once" | "events.EventEmitterAsyncResource.listenerCount" | "events.EventEmitterAsyncResource.on" | "events.EventEmitterAsyncResource.setMaxListeners" | "events.EventEmitterAsyncResource.addAbortListener" | "events.defaultMaxListeners" | "events.errorMonitor" | "events.captureRejections" | "events.captureRejectionSymbol" | "events.getEventListeners" | "events.getMaxListeners" | "events.once" | "events.listenerCount" | "events.on" | "events.setMaxListeners" | "events.addAbortListener" | "fs" | "fs.promises" | "fs.promises.FileHandle" | "fs.promises.access" | "fs.promises.appendFile" | "fs.promises.chmod" | "fs.promises.chown" | "fs.promises.constants" | "fs.promises.copyFile" | "fs.promises.cp" | "fs.promises.glob" | "fs.promises.lchmod" | "fs.promises.lchown" | "fs.promises.link" | "fs.promises.lstat" | "fs.promises.lutimes" | "fs.promises.mkdir" | "fs.promises.mkdtemp" | "fs.promises.open" | "fs.promises.opendir" | "fs.promises.readFile" | "fs.promises.readdir" | "fs.promises.readlink" | "fs.promises.realpath" | "fs.promises.rename" | "fs.promises.rm" | "fs.promises.rmdir" | "fs.promises.stat" | "fs.promises.statfs" | "fs.promises.symlink" | "fs.promises.truncate" | "fs.promises.unlink" | "fs.promises.utimes" | "fs.promises.watch" | "fs.promises.writeFile" | "fs.access" | "fs.appendFile" | "fs.chmod" | "fs.chown" | "fs.close" | "fs.copyFile" | "fs.cp" | "fs.createReadStream" | "fs.createWriteStream" | "fs.exists" | "fs.fchmod" | "fs.fchown" | "fs.fdatasync" | "fs.fstat" | "fs.fsync" | "fs.ftruncate" | "fs.futimes" | "fs.glob" | "fs.lchmod" | "fs.lchown" | "fs.link" | "fs.lstat" | "fs.lutimes" | "fs.mkdir" | "fs.mkdtemp" | "fs.native" | "fs.open" | "fs.openAsBlob" | "fs.opendir" | "fs.read" | "fs.readdir" | "fs.readFile" | "fs.readlink" | "fs.readv" | "fs.realpath" | "fs.realpath.native" | "fs.rename" | "fs.rm" | "fs.rmdir" | "fs.stat" | "fs.statfs" | "fs.symlink" | "fs.truncate" | "fs.unlink" | "fs.unwatchFile" | "fs.utimes" | "fs.watch" | "fs.watchFile" | "fs.write" | "fs.writeFile" | "fs.writev" | "fs.accessSync" | "fs.appendFileSync" | "fs.chmodSync" | "fs.chownSync" | "fs.closeSync" | "fs.copyFileSync" | "fs.cpSync" | "fs.existsSync" | "fs.fchmodSync" | "fs.fchownSync" | "fs.fdatasyncSync" | "fs.fstatSync" | "fs.fsyncSync" | "fs.ftruncateSync" | "fs.futimesSync" | "fs.globSync" | "fs.lchmodSync" | "fs.lchownSync" | "fs.linkSync" | "fs.lstatSync" | "fs.lutimesSync" | "fs.mkdirSync" | "fs.mkdtempSync" | "fs.opendirSync" | "fs.openSync" | "fs.readdirSync" | "fs.readFileSync" | "fs.readlinkSync" | "fs.readSync" | "fs.readvSync" | "fs.realpathSync" | "fs.realpathSync.native" | "fs.renameSync" | "fs.rmdirSync" | "fs.rmSync" | "fs.statfsSync" | "fs.statSync" | "fs.symlinkSync" | "fs.truncateSync" | "fs.unlinkSync" | "fs.utimesSync" | "fs.writeFileSync" | "fs.writeSync" | "fs.writevSync" | "fs.constants" | "fs.Dir" | "fs.Dirent" | "fs.FSWatcher" | "fs.StatWatcher" | "fs.ReadStream" | "fs.Stats()" | "new fs.Stats()" | "fs.Stats" | "fs.StatFs" | "fs.WriteStream" | "fs.common_objects" | "fs/promises" | "fs/promises.FileHandle" | "fs/promises.access" | "fs/promises.appendFile" | "fs/promises.chmod" | "fs/promises.chown" | "fs/promises.constants" | "fs/promises.copyFile" | "fs/promises.cp" | "fs/promises.glob" | "fs/promises.lchmod" | "fs/promises.lchown" | "fs/promises.link" | "fs/promises.lstat" | "fs/promises.lutimes" | "fs/promises.mkdir" | "fs/promises.mkdtemp" | "fs/promises.open" | "fs/promises.opendir" | "fs/promises.readFile" | "fs/promises.readdir" | "fs/promises.readlink" | "fs/promises.realpath" | "fs/promises.rename" | "fs/promises.rm" | "fs/promises.rmdir" | "fs/promises.stat" | "fs/promises.statfs" | "fs/promises.symlink" | "fs/promises.truncate" | "fs/promises.unlink" | "fs/promises.utimes" | "fs/promises.watch" | "fs/promises.writeFile" | "http2" | "http2.constants" | "http2.sensitiveHeaders" | "http2.createServer" | "http2.createSecureServer" | "http2.connect" | "http2.getDefaultSettings" | "http2.getPackedSettings" | "http2.getUnpackedSettings" | "http2.performServerHandshake" | "http2.Http2Session" | "http2.ServerHttp2Session" | "http2.ClientHttp2Session" | "http2.Http2Stream" | "http2.ClientHttp2Stream" | "http2.ServerHttp2Stream" | "http2.Http2Server" | "http2.Http2SecureServer" | "http2.Http2ServerRequest" | "http2.Http2ServerResponse" | "http" | "http.globalAgent" | "http.createServer" | "http.get" | "http.request" | "http.Agent" | "http.Server" | "inspector" | "inspector.Session" | "inspector.Network.requestWillBeSent" | "inspector.Network.responseReceived" | "inspector.Network.loadingFinished" | "inspector.Network.loadingFailed" | "inspector.console" | "inspector.close" | "inspector.open" | "inspector.url" | "inspector.waitForDebugger" | "inspector/promises" | "inspector/promises.Session" | "inspector/promises.console" | "inspector/promises.close" | "inspector/promises.open" | "inspector/promises.url" | "inspector/promises.waitForDebugger" | "module.builtinModules" | "module.constants.compileCacheStatus" | "module.createRequire" | "module.createRequireFromPath" | "module.enableCompileCache" | "module.getCompileCacheDir" | "module.isBuiltin" | "module.register" | "module.syncBuiltinESMExports" | "module.findSourceMap" | "module.SourceMap" | "module.Module.builtinModules" | "module.Module.createRequire" | "module.Module.createRequireFromPath" | "module.Module.enableCompileCache" | "module.Module.getCompileCacheDir" | "module.Module.isBuiltin" | "module.Module.register" | "module.Module.syncBuiltinESMExports" | "module.Module.findSourceMap" | "module.Module.SourceMap" | "net" | "net.connect" | "net.createConnection" | "net.createServer" | "net.getDefaultAutoSelectFamily" | "net.setDefaultAutoSelectFamily" | "net.getDefaultAutoSelectFamilyAttemptTimeout" | "net.setDefaultAutoSelectFamilyAttemptTimeout" | "net.isIP" | "net.isIPv4" | "net.isIPv6" | "net.BlockList" | "net.SocketAddress" | "net.Server" | "net.Socket" | "os" | "os.EOL" | "os.constants" | "os.constants.priority" | "os.devNull" | "os.availableParallelism" | "os.arch" | "os.cpus" | "os.endianness" | "os.freemem" | "os.getPriority" | "os.homedir" | "os.hostname" | "os.loadavg" | "os.machine" | "os.networkInterfaces" | "os.platform" | "os.release" | "os.setPriority" | "os.tmpdir" | "os.totalmem" | "os.type" | "os.uptime" | "os.userInfo" | "os.version" | "path" | "path.posix" | "path.posix.delimiter" | "path.posix.sep" | "path.posix.basename" | "path.posix.dirname" | "path.posix.extname" | "path.posix.format" | "path.posix.matchesGlob" | "path.posix.isAbsolute" | "path.posix.join" | "path.posix.normalize" | "path.posix.parse" | "path.posix.relative" | "path.posix.resolve" | "path.posix.toNamespacedPath" | "path.win32" | "path.win32.delimiter" | "path.win32.sep" | "path.win32.basename" | "path.win32.dirname" | "path.win32.extname" | "path.win32.format" | "path.win32.matchesGlob" | "path.win32.isAbsolute" | "path.win32.join" | "path.win32.normalize" | "path.win32.parse" | "path.win32.relative" | "path.win32.resolve" | "path.win32.toNamespacedPath" | "path.delimiter" | "path.sep" | "path.basename" | "path.dirname" | "path.extname" | "path.format" | "path.matchesGlob" | "path.isAbsolute" | "path.join" | "path.normalize" | "path.parse" | "path.relative" | "path.resolve" | "path.toNamespacedPath" | "path/posix" | "path/posix.delimiter" | "path/posix.sep" | "path/posix.basename" | "path/posix.dirname" | "path/posix.extname" | "path/posix.format" | "path/posix.matchesGlob" | "path/posix.isAbsolute" | "path/posix.join" | "path/posix.normalize" | "path/posix.parse" | "path/posix.relative" | "path/posix.resolve" | "path/posix.toNamespacedPath" | "path/win32" | "path/win32.delimiter" | "path/win32.sep" | "path/win32.basename" | "path/win32.dirname" | "path/win32.extname" | "path/win32.format" | "path/win32.matchesGlob" | "path/win32.isAbsolute" | "path/win32.join" | "path/win32.normalize" | "path/win32.parse" | "path/win32.relative" | "path/win32.resolve" | "path/win32.toNamespacedPath" | "perf_hooks" | "perf_hooks.performance" | "perf_hooks.performance.clearMarks" | "perf_hooks.performance.clearMeasures" | "perf_hooks.performance.clearResourceTimings" | "perf_hooks.performance.eventLoopUtilization" | "perf_hooks.performance.getEntries" | "perf_hooks.performance.getEntriesByName" | "perf_hooks.performance.getEntriesByType" | "perf_hooks.performance.mark" | "perf_hooks.performance.markResourceTiming" | "perf_hooks.performance.measure" | "perf_hooks.performance.nodeTiming" | "perf_hooks.performance.nodeTiming.bootstrapComplete" | "perf_hooks.performance.nodeTiming.environment" | "perf_hooks.performance.nodeTiming.idleTime" | "perf_hooks.performance.nodeTiming.loopExit" | "perf_hooks.performance.nodeTiming.loopStart" | "perf_hooks.performance.nodeTiming.nodeStart" | "perf_hooks.performance.nodeTiming.uvMetricsInfo" | "perf_hooks.performance.nodeTiming.v8Start" | "perf_hooks.performance.now" | "perf_hooks.performance.onresourcetimingbufferfull" | "perf_hooks.performance.setResourceTimingBufferSize" | "perf_hooks.performance.timeOrigin" | "perf_hooks.performance.timerify" | "perf_hooks.performance.toJSON" | "perf_hooks.createHistogram" | "perf_hooks.monitorEventLoopDelay" | "perf_hooks.PerformanceEntry" | "perf_hooks.PerformanceMark" | "perf_hooks.PerformanceMeasure" | "perf_hooks.PerformanceNodeEntry" | "perf_hooks.PerformanceNodeTiming" | "perf_hooks.PerformanceResourceTiming" | "perf_hooks.PerformanceObserver" | "perf_hooks.PerformanceObserverEntryList" | "perf_hooks.Histogram" | "perf_hooks.IntervalHistogram" | "perf_hooks.RecordableHistogram" | "punycode" | "punycode.ucs2" | "punycode.version" | "punycode.decode" | "punycode.encode" | "punycode.toASCII" | "punycode.toUnicode" | "querystring" | "querystring.decode" | "querystring.encode" | "querystring.escape" | "querystring.parse" | "querystring.stringify" | "querystring.unescape" | "readline" | "readline.promises" | "readline.promises.createInterface" | "readline.promises.Interface" | "readline.promises.Readline" | "readline.clearLine" | "readline.clearScreenDown" | "readline.createInterface" | "readline.cursorTo" | "readline.moveCursor" | "readline.Interface" | "readline.emitKeypressEvents" | "readline.InterfaceConstructor" | "readline/promises" | "readline/promises.createInterface" | "readline/promises.Interface" | "readline/promises.Readline" | "repl" | "repl.start" | "repl.writer" | "repl.REPLServer()" | "repl.REPLServer" | "repl.REPL_MODE_MAGIC" | "repl.REPL_MODE_SLOPPY" | "repl.REPL_MODE_STRICT" | "repl.Recoverable()" | "repl.Recoverable" | "repl.builtinModules" | "sea" | "sea.isSea" | "sea.getAsset" | "sea.getAssetAsBlob" | "sea.getRawAsset" | "sea.test.isSea" | "sea.test.getAsset" | "sea.test.getAssetAsBlob" | "sea.test.getRawAsset" | "stream" | "stream.promises" | "stream.promises.pipeline" | "stream.promises.finished" | "stream.finished" | "stream.pipeline" | "stream.compose" | "stream.duplexPair" | "stream.Readable" | "stream.Readable.from" | "stream.Readable.isDisturbed" | "stream.Readable.fromWeb" | "stream.Readable.toWeb" | "stream.Writable" | "stream.Writable.fromWeb" | "stream.Writable.toWeb" | "stream.Duplex" | "stream.Duplex.from" | "stream.Duplex.fromWeb" | "stream.Duplex.toWeb" | "stream.Transform" | "stream.isErrored" | "stream.isReadable" | "stream.addAbortSignal" | "stream.getDefaultHighWaterMark" | "stream.setDefaultHighWaterMark" | "stream/promises.pipeline" | "stream/promises.finished" | "stream/web" | "stream/web.ReadableStream" | "stream/web.ReadableStream.from" | "stream/web.ReadableStreamDefaultReader" | "stream/web.ReadableStreamBYOBReader" | "stream/web.ReadableStreamDefaultController" | "stream/web.ReadableByteStreamController" | "stream/web.ReadableStreamBYOBRequest" | "stream/web.WritableStream" | "stream/web.WritableStreamDefaultWriter" | "stream/web.WritableStreamDefaultController" | "stream/web.TransformStream" | "stream/web.TransformStreamDefaultController" | "stream/web.ByteLengthQueuingStrategy" | "stream/web.CountQueuingStrategy" | "stream/web.TextEncoderStream" | "stream/web.TextDecoderStream" | "stream/web.CompressionStream" | "stream/web.DecompressionStream" | "stream/consumers" | "stream/consumers.arrayBuffer" | "stream/consumers.blob" | "stream/consumers.buffer" | "stream/consumers.json" | "stream/consumers.text" | "string_decoder" | "string_decoder.StringDecoder" | "test" | "test.run" | "test.skip" | "test.todo" | "test.only" | "test.describe" | "test.describe.skip" | "test.describe.todo" | "test.describe.only" | "test.it" | "test.it.skip" | "test.it.todo" | "test.it.only" | "test.suite" | "test.suite.skip" | "test.suite.todo" | "test.suite.only" | "test.before" | "test.after" | "test.beforeEach" | "test.afterEach" | "test.snapshot" | "test.snapshot.setDefaultSnapshotSerializers" | "test.snapshot.setResolveSnapshotPath" | "test.MockFunctionContext" | "test.MockModuleContext" | "test.MockTracker" | "test.MockTimers" | "test.TestsStream" | "test.TestContext" | "test.SuiteContext" | "test.test.run" | "test.test.skip" | "test.test.todo" | "test.test.only" | "test.test.describe" | "test.test.it" | "test.test.suite" | "test.test.before" | "test.test.after" | "test.test.beforeEach" | "test.test.afterEach" | "test.test.snapshot" | "test.test.MockFunctionContext" | "test.test.MockModuleContext" | "test.test.MockTracker" | "test.test.MockTimers" | "test.test.TestsStream" | "test.test.TestContext" | "test.test.SuiteContext" | "timers" | "timers.Immediate" | "timers.Timeout" | "timers.setImmediate" | "timers.clearImmediate" | "timers.setInterval" | "timers.clearInterval" | "timers.setTimeout" | "timers.clearTimeout" | "timers.promises" | "timers.promises.setTimeout" | "timers.promises.setImmediate" | "timers.promises.setInterval" | "timers.promises.scheduler.wait" | "timers.promises.scheduler.yield" | "timers/promises" | "timers/promises.setTimeout" | "timers/promises.setImmediate" | "timers/promises.setInterval" | "tls" | "tls.rootCertificates" | "tls.DEFAULT_ECDH_CURVE" | "tls.DEFAULT_MAX_VERSION" | "tls.DEFAULT_MIN_VERSION" | "tls.DEFAULT_CIPHERS" | "tls.checkServerIdentity" | "tls.connect" | "tls.createSecureContext" | "tls.createSecurePair" | "tls.createServer" | "tls.getCiphers" | "tls.SecureContext" | "tls.CryptoStream" | "tls.SecurePair" | "tls.Server" | "tls.TLSSocket" | "trace_events" | "trace_events.createTracing" | "trace_events.getEnabledCategories" | "tty" | "tty.isatty" | "tty.ReadStream" | "tty.WriteStream" | "url" | "url.domainToASCII" | "url.domainToUnicode" | "url.fileURLToPath" | "url.format" | "url.pathToFileURL" | "url.urlToHttpOptions" | "url.URL" | "url.URL.canParse" | "url.URL.createObjectURL" | "url.URL.revokeObjectURL" | "url.URLSearchParams" | "url.Url" | "util.promisify" | "util.promisify.custom" | "util.callbackify" | "util.debuglog" | "util.debug" | "util.deprecate" | "util.format" | "util.formatWithOptions" | "util.getCallSite" | "util.getSystemErrorName" | "util.getSystemErrorMap" | "util.inherits" | "util.inspect" | "util.inspect.custom" | "util.inspect.defaultOptions" | "util.inspect.replDefaults" | "util.isDeepStrictEqual" | "util.parseArgs" | "util.parseEnv" | "util.stripVTControlCharacters" | "util.styleText" | "util.toUSVString" | "util.transferableAbortController" | "util.transferableAbortSignal" | "util.aborted" | "util.MIMEType" | "util.MIMEParams" | "util.TextDecoder" | "util.TextEncoder" | "util.types" | "util.types.isExternal" | "util.types.isDate" | "util.types.isArgumentsObject" | "util.types.isBigIntObject" | "util.types.isBooleanObject" | "util.types.isNumberObject" | "util.types.isStringObject" | "util.types.isSymbolObject" | "util.types.isNativeError" | "util.types.isRegExp" | "util.types.isAsyncFunction" | "util.types.isGeneratorFunction" | "util.types.isGeneratorObject" | "util.types.isPromise" | "util.types.isMap" | "util.types.isSet" | "util.types.isMapIterator" | "util.types.isSetIterator" | "util.types.isWeakMap" | "util.types.isWeakSet" | "util.types.isArrayBuffer" | "util.types.isDataView" | "util.types.isSharedArrayBuffer" | "util.types.isProxy" | "util.types.isModuleNamespaceObject" | "util.types.isAnyArrayBuffer" | "util.types.isBoxedPrimitive" | "util.types.isArrayBufferView" | "util.types.isTypedArray" | "util.types.isUint8Array" | "util.types.isUint8ClampedArray" | "util.types.isUint16Array" | "util.types.isUint32Array" | "util.types.isInt8Array" | "util.types.isInt16Array" | "util.types.isInt32Array" | "util.types.isFloat32Array" | "util.types.isFloat64Array" | "util.types.isBigInt64Array" | "util.types.isBigUint64Array" | "util.types.isKeyObject" | "util.types.isCryptoKey" | "util.types.isWebAssemblyCompiledModule" | "util._extend" | "util.isArray" | "util.isBoolean" | "util.isBuffer" | "util.isDate" | "util.isError" | "util.isFunction" | "util.isNull" | "util.isNullOrUndefined" | "util.isNumber" | "util.isObject" | "util.isPrimitive" | "util.isRegExp" | "util.isString" | "util.isSymbol" | "util.isUndefined" | "util.log" | "util" | "util/types" | "util/types.isExternal" | "util/types.isDate" | "util/types.isArgumentsObject" | "util/types.isBigIntObject" | "util/types.isBooleanObject" | "util/types.isNumberObject" | "util/types.isStringObject" | "util/types.isSymbolObject" | "util/types.isNativeError" | "util/types.isRegExp" | "util/types.isAsyncFunction" | "util/types.isGeneratorFunction" | "util/types.isGeneratorObject" | "util/types.isPromise" | "util/types.isMap" | "util/types.isSet" | "util/types.isMapIterator" | "util/types.isSetIterator" | "util/types.isWeakMap" | "util/types.isWeakSet" | "util/types.isArrayBuffer" | "util/types.isDataView" | "util/types.isSharedArrayBuffer" | "util/types.isProxy" | "util/types.isModuleNamespaceObject" | "util/types.isAnyArrayBuffer" | "util/types.isBoxedPrimitive" | "util/types.isArrayBufferView" | "util/types.isTypedArray" | "util/types.isUint8Array" | "util/types.isUint8ClampedArray" | "util/types.isUint16Array" | "util/types.isUint32Array" | "util/types.isInt8Array" | "util/types.isInt16Array" | "util/types.isInt32Array" | "util/types.isFloat32Array" | "util/types.isFloat64Array" | "util/types.isBigInt64Array" | "util/types.isBigUint64Array" | "util/types.isKeyObject" | "util/types.isCryptoKey" | "util/types.isWebAssemblyCompiledModule" | "v8" | "v8.serialize" | "v8.deserialize" | "v8.Serializer" | "v8.Deserializer" | "v8.DefaultSerializer" | "v8.DefaultDeserializer" | "v8.promiseHooks" | "v8.promiseHooks.onInit" | "v8.promiseHooks.onSettled" | "v8.promiseHooks.onBefore" | "v8.promiseHooks.onAfter" | "v8.promiseHooks.createHook" | "v8.startupSnapshot" | "v8.startupSnapshot.addSerializeCallback" | "v8.startupSnapshot.addDeserializeCallback" | "v8.startupSnapshot.setDeserializeMainFunction" | "v8.startupSnapshot.isBuildingSnapshot" | "v8.cachedDataVersionTag" | "v8.getHeapCodeStatistics" | "v8.getHeapSnapshot" | "v8.getHeapSpaceStatistics" | "v8.getHeapStatistics" | "v8.queryObjects" | "v8.setFlagsFromString" | "v8.stopCoverage" | "v8.takeCoverage" | "v8.writeHeapSnapshot" | "v8.setHeapSnapshotNearHeapLimit" | "v8.GCProfiler" | "vm.constants" | "vm.compileFunction" | "vm.createContext" | "vm.isContext" | "vm.measureMemory" | "vm.runInContext" | "vm.runInNewContext" | "vm.runInThisContext" | "vm.Script" | "vm.Module" | "vm.SourceTextModule" | "vm.SyntheticModule" | "vm" | "wasi.WASI" | "wasi" | "worker_threads" | "worker_threads.isMainThread" | "worker_threads.parentPort" | "worker_threads.resourceLimits" | "worker_threads.SHARE_ENV" | "worker_threads.threadId" | "worker_threads.workerData" | "worker_threads.getEnvironmentData" | "worker_threads.markAsUntransferable" | "worker_threads.isMarkedAsUntransferable" | "worker_threads.moveMessagePortToContext" | "worker_threads.postMessageToThread" | "worker_threads.receiveMessageOnPort" | "worker_threads.setEnvironmentData" | "worker_threads.BroadcastChannel" | "worker_threads.MessageChannel" | "worker_threads.MessagePort" | "worker_threads.Worker" | "zlib.constants" | "zlib.crc32" | "zlib.createBrotliCompress" | "zlib.createBrotliDecompress" | "zlib.createDeflate" | "zlib.createDeflateRaw" | "zlib.createGunzip" | "zlib.createGzip" | "zlib.createInflate" | "zlib.createInflateRaw" | "zlib.createUnzip" | "zlib.brotliCompress" | "zlib.brotliCompressSync" | "zlib.brotliDecompress" | "zlib.brotliDecompressSync" | "zlib.deflate" | "zlib.deflateSync" | "zlib.deflateRaw" | "zlib.deflateRawSync" | "zlib.gunzip" | "zlib.gunzipSync" | "zlib.gzip" | "zlib.gzipSync" | "zlib.inflate" | "zlib.inflateSync" | "zlib.inflateRaw" | "zlib.inflateRawSync" | "zlib.unzip" | "zlib.unzipSync" | "zlib.BrotliCompress()" | "zlib.BrotliCompress" | "zlib.BrotliDecompress()" | "zlib.BrotliDecompress" | "zlib.Deflate()" | "zlib.Deflate" | "zlib.DeflateRaw()" | "zlib.DeflateRaw" | "zlib.Gunzip()" | "zlib.Gunzip" | "zlib.Gzip()" | "zlib.Gzip" | "zlib.Inflate()" | "zlib.Inflate" | "zlib.InflateRaw()" | "zlib.InflateRaw" | "zlib.Unzip()" | "zlib.Unzip" | "zlib")[]
|
|
10362
10400
|
}]
|
|
10363
10401
|
// ----- node/prefer-global/buffer -----
|
|
10364
10402
|
type NodePreferGlobalBuffer = []|[("always" | "never")]
|
|
@@ -10509,6 +10547,8 @@ type PerfectionistSortArrayIncludes = []|[{
|
|
|
10509
10547
|
|
|
10510
10548
|
ignoreCase?: boolean
|
|
10511
10549
|
|
|
10550
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10551
|
+
|
|
10512
10552
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10513
10553
|
|
|
10514
10554
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10526,6 +10566,8 @@ type PerfectionistSortAstroAttributes = []|[{
|
|
|
10526
10566
|
|
|
10527
10567
|
ignoreCase?: boolean
|
|
10528
10568
|
|
|
10569
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10570
|
+
|
|
10529
10571
|
groups?: (string | string[])[]
|
|
10530
10572
|
|
|
10531
10573
|
customGroups?: {
|
|
@@ -10543,6 +10585,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
10543
10585
|
|
|
10544
10586
|
ignoreCase?: boolean
|
|
10545
10587
|
|
|
10588
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10589
|
+
|
|
10546
10590
|
partitionByComment?: (string[] | boolean | string)
|
|
10547
10591
|
|
|
10548
10592
|
groups?: (string | string[])[]
|
|
@@ -10564,6 +10608,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
10564
10608
|
|
|
10565
10609
|
elementNamePattern?: string
|
|
10566
10610
|
|
|
10611
|
+
elementValuePattern?: string
|
|
10612
|
+
|
|
10567
10613
|
decoratorNamePattern?: string
|
|
10568
10614
|
}[]
|
|
10569
10615
|
} | {
|
|
@@ -10580,6 +10626,8 @@ type PerfectionistSortClasses = []|[{
|
|
|
10580
10626
|
|
|
10581
10627
|
elementNamePattern?: string
|
|
10582
10628
|
|
|
10629
|
+
elementValuePattern?: string
|
|
10630
|
+
|
|
10583
10631
|
decoratorNamePattern?: string
|
|
10584
10632
|
})[])
|
|
10585
10633
|
}]
|
|
@@ -10594,6 +10642,8 @@ type PerfectionistSortEnums = []|[{
|
|
|
10594
10642
|
|
|
10595
10643
|
ignoreCase?: boolean
|
|
10596
10644
|
|
|
10645
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10646
|
+
|
|
10597
10647
|
sortByValue?: boolean
|
|
10598
10648
|
|
|
10599
10649
|
forceNumericSort?: boolean
|
|
@@ -10613,6 +10663,8 @@ type PerfectionistSortExports = []|[{
|
|
|
10613
10663
|
|
|
10614
10664
|
ignoreCase?: boolean
|
|
10615
10665
|
|
|
10666
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10667
|
+
|
|
10616
10668
|
partitionByComment?: (string[] | boolean | string)
|
|
10617
10669
|
|
|
10618
10670
|
partitionByNewLine?: boolean
|
|
@@ -10631,6 +10683,8 @@ type _PerfectionistSortImportsSortImports = (_PerfectionistSortImportsMaxLineLen
|
|
|
10631
10683
|
|
|
10632
10684
|
ignoreCase?: boolean
|
|
10633
10685
|
|
|
10686
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10687
|
+
|
|
10634
10688
|
internalPattern?: string[]
|
|
10635
10689
|
|
|
10636
10690
|
sortSideEffects?: boolean
|
|
@@ -10670,6 +10724,8 @@ type PerfectionistSortInterfaces = []|[{
|
|
|
10670
10724
|
|
|
10671
10725
|
ignoreCase?: boolean
|
|
10672
10726
|
|
|
10727
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10728
|
+
|
|
10673
10729
|
ignorePattern?: string[]
|
|
10674
10730
|
|
|
10675
10731
|
partitionByComment?: (boolean | string | string[])
|
|
@@ -10695,6 +10751,8 @@ type PerfectionistSortIntersectionTypes = []|[{
|
|
|
10695
10751
|
|
|
10696
10752
|
ignoreCase?: boolean
|
|
10697
10753
|
|
|
10754
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10755
|
+
|
|
10698
10756
|
groups?: (string | string[])[]
|
|
10699
10757
|
|
|
10700
10758
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10712,6 +10770,8 @@ type PerfectionistSortJsxProps = []|[{
|
|
|
10712
10770
|
|
|
10713
10771
|
ignoreCase?: boolean
|
|
10714
10772
|
|
|
10773
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10774
|
+
|
|
10715
10775
|
ignorePattern?: string[]
|
|
10716
10776
|
|
|
10717
10777
|
groups?: (string | string[])[]
|
|
@@ -10731,6 +10791,8 @@ type PerfectionistSortMaps = []|[{
|
|
|
10731
10791
|
|
|
10732
10792
|
ignoreCase?: boolean
|
|
10733
10793
|
|
|
10794
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10795
|
+
|
|
10734
10796
|
partitionByComment?: (string[] | boolean | string)
|
|
10735
10797
|
|
|
10736
10798
|
partitionByNewLine?: boolean
|
|
@@ -10746,6 +10808,8 @@ type PerfectionistSortNamedExports = []|[{
|
|
|
10746
10808
|
|
|
10747
10809
|
ignoreCase?: boolean
|
|
10748
10810
|
|
|
10811
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10812
|
+
|
|
10749
10813
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
10750
10814
|
|
|
10751
10815
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10763,6 +10827,8 @@ type PerfectionistSortNamedImports = []|[{
|
|
|
10763
10827
|
|
|
10764
10828
|
ignoreCase?: boolean
|
|
10765
10829
|
|
|
10830
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10831
|
+
|
|
10766
10832
|
ignoreAlias?: boolean
|
|
10767
10833
|
|
|
10768
10834
|
groupKind?: ("mixed" | "values-first" | "types-first")
|
|
@@ -10782,6 +10848,8 @@ type PerfectionistSortObjectTypes = []|[{
|
|
|
10782
10848
|
|
|
10783
10849
|
ignoreCase?: boolean
|
|
10784
10850
|
|
|
10851
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10852
|
+
|
|
10785
10853
|
partitionByComment?: (string[] | boolean | string)
|
|
10786
10854
|
|
|
10787
10855
|
partitionByNewLine?: boolean
|
|
@@ -10805,6 +10873,8 @@ type PerfectionistSortObjects = []|[{
|
|
|
10805
10873
|
|
|
10806
10874
|
ignoreCase?: boolean
|
|
10807
10875
|
|
|
10876
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10877
|
+
|
|
10808
10878
|
partitionByComment?: (string[] | boolean | string)
|
|
10809
10879
|
|
|
10810
10880
|
partitionByNewLine?: boolean
|
|
@@ -10832,6 +10902,8 @@ type PerfectionistSortSets = []|[{
|
|
|
10832
10902
|
|
|
10833
10903
|
ignoreCase?: boolean
|
|
10834
10904
|
|
|
10905
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10906
|
+
|
|
10835
10907
|
groupKind?: ("mixed" | "literals-first" | "spreads-first")
|
|
10836
10908
|
|
|
10837
10909
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10849,6 +10921,8 @@ type PerfectionistSortSvelteAttributes = []|[{
|
|
|
10849
10921
|
|
|
10850
10922
|
ignoreCase?: boolean
|
|
10851
10923
|
|
|
10924
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10925
|
+
|
|
10852
10926
|
groups?: (string | string[])[]
|
|
10853
10927
|
|
|
10854
10928
|
customGroups?: {
|
|
@@ -10863,6 +10937,8 @@ type PerfectionistSortSwitchCase = []|[{
|
|
|
10863
10937
|
order?: ("asc" | "desc")
|
|
10864
10938
|
|
|
10865
10939
|
ignoreCase?: boolean
|
|
10940
|
+
|
|
10941
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10866
10942
|
}]
|
|
10867
10943
|
// ----- perfectionist/sort-union-types -----
|
|
10868
10944
|
type PerfectionistSortUnionTypes = []|[{
|
|
@@ -10875,6 +10951,8 @@ type PerfectionistSortUnionTypes = []|[{
|
|
|
10875
10951
|
|
|
10876
10952
|
ignoreCase?: boolean
|
|
10877
10953
|
|
|
10954
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10955
|
+
|
|
10878
10956
|
groups?: (string | string[])[]
|
|
10879
10957
|
|
|
10880
10958
|
partitionByComment?: (string[] | boolean | string)
|
|
@@ -10892,6 +10970,8 @@ type PerfectionistSortVariableDeclarations = []|[{
|
|
|
10892
10970
|
|
|
10893
10971
|
ignoreCase?: boolean
|
|
10894
10972
|
|
|
10973
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10974
|
+
|
|
10895
10975
|
partitionByComment?: (string[] | boolean | string)
|
|
10896
10976
|
|
|
10897
10977
|
partitionByNewLine?: boolean
|
|
@@ -10907,6 +10987,8 @@ type PerfectionistSortVueAttributes = []|[{
|
|
|
10907
10987
|
|
|
10908
10988
|
ignoreCase?: boolean
|
|
10909
10989
|
|
|
10990
|
+
specialCharacters?: ("remove" | "trim" | "keep")
|
|
10991
|
+
|
|
10910
10992
|
groups?: (string | string[])[]
|
|
10911
10993
|
|
|
10912
10994
|
customGroups?: {
|
|
@@ -11364,6 +11446,127 @@ type StyleCommaStyle = []|[("first" | "last")]|[("first" | "last"), {
|
|
|
11364
11446
|
type StyleComputedPropertySpacing = []|[("always" | "never")]|[("always" | "never"), {
|
|
11365
11447
|
enforceForClassMembers?: boolean
|
|
11366
11448
|
}]
|
|
11449
|
+
// ----- style/curly-newline -----
|
|
11450
|
+
type StyleCurlyNewline = []|[(("always" | "never") | {
|
|
11451
|
+
IfStatementConsequent?: (("always" | "never") | {
|
|
11452
|
+
multiline?: boolean
|
|
11453
|
+
minElements?: number
|
|
11454
|
+
consistent?: boolean
|
|
11455
|
+
})
|
|
11456
|
+
IfStatementAlternative?: (("always" | "never") | {
|
|
11457
|
+
multiline?: boolean
|
|
11458
|
+
minElements?: number
|
|
11459
|
+
consistent?: boolean
|
|
11460
|
+
})
|
|
11461
|
+
DoWhileStatement?: (("always" | "never") | {
|
|
11462
|
+
multiline?: boolean
|
|
11463
|
+
minElements?: number
|
|
11464
|
+
consistent?: boolean
|
|
11465
|
+
})
|
|
11466
|
+
ForInStatement?: (("always" | "never") | {
|
|
11467
|
+
multiline?: boolean
|
|
11468
|
+
minElements?: number
|
|
11469
|
+
consistent?: boolean
|
|
11470
|
+
})
|
|
11471
|
+
ForOfStatement?: (("always" | "never") | {
|
|
11472
|
+
multiline?: boolean
|
|
11473
|
+
minElements?: number
|
|
11474
|
+
consistent?: boolean
|
|
11475
|
+
})
|
|
11476
|
+
ForStatement?: (("always" | "never") | {
|
|
11477
|
+
multiline?: boolean
|
|
11478
|
+
minElements?: number
|
|
11479
|
+
consistent?: boolean
|
|
11480
|
+
})
|
|
11481
|
+
WhileStatement?: (("always" | "never") | {
|
|
11482
|
+
multiline?: boolean
|
|
11483
|
+
minElements?: number
|
|
11484
|
+
consistent?: boolean
|
|
11485
|
+
})
|
|
11486
|
+
SwitchStatement?: (("always" | "never") | {
|
|
11487
|
+
multiline?: boolean
|
|
11488
|
+
minElements?: number
|
|
11489
|
+
consistent?: boolean
|
|
11490
|
+
})
|
|
11491
|
+
SwitchCase?: (("always" | "never") | {
|
|
11492
|
+
multiline?: boolean
|
|
11493
|
+
minElements?: number
|
|
11494
|
+
consistent?: boolean
|
|
11495
|
+
})
|
|
11496
|
+
TryStatementBlock?: (("always" | "never") | {
|
|
11497
|
+
multiline?: boolean
|
|
11498
|
+
minElements?: number
|
|
11499
|
+
consistent?: boolean
|
|
11500
|
+
})
|
|
11501
|
+
TryStatementHandler?: (("always" | "never") | {
|
|
11502
|
+
multiline?: boolean
|
|
11503
|
+
minElements?: number
|
|
11504
|
+
consistent?: boolean
|
|
11505
|
+
})
|
|
11506
|
+
TryStatementFinalizer?: (("always" | "never") | {
|
|
11507
|
+
multiline?: boolean
|
|
11508
|
+
minElements?: number
|
|
11509
|
+
consistent?: boolean
|
|
11510
|
+
})
|
|
11511
|
+
BlockStatement?: (("always" | "never") | {
|
|
11512
|
+
multiline?: boolean
|
|
11513
|
+
minElements?: number
|
|
11514
|
+
consistent?: boolean
|
|
11515
|
+
})
|
|
11516
|
+
ArrowFunctionExpression?: (("always" | "never") | {
|
|
11517
|
+
multiline?: boolean
|
|
11518
|
+
minElements?: number
|
|
11519
|
+
consistent?: boolean
|
|
11520
|
+
})
|
|
11521
|
+
FunctionDeclaration?: (("always" | "never") | {
|
|
11522
|
+
multiline?: boolean
|
|
11523
|
+
minElements?: number
|
|
11524
|
+
consistent?: boolean
|
|
11525
|
+
})
|
|
11526
|
+
FunctionExpression?: (("always" | "never") | {
|
|
11527
|
+
multiline?: boolean
|
|
11528
|
+
minElements?: number
|
|
11529
|
+
consistent?: boolean
|
|
11530
|
+
})
|
|
11531
|
+
Property?: (("always" | "never") | {
|
|
11532
|
+
multiline?: boolean
|
|
11533
|
+
minElements?: number
|
|
11534
|
+
consistent?: boolean
|
|
11535
|
+
})
|
|
11536
|
+
ClassBody?: (("always" | "never") | {
|
|
11537
|
+
multiline?: boolean
|
|
11538
|
+
minElements?: number
|
|
11539
|
+
consistent?: boolean
|
|
11540
|
+
})
|
|
11541
|
+
StaticBlock?: (("always" | "never") | {
|
|
11542
|
+
multiline?: boolean
|
|
11543
|
+
minElements?: number
|
|
11544
|
+
consistent?: boolean
|
|
11545
|
+
})
|
|
11546
|
+
WithStatement?: (("always" | "never") | {
|
|
11547
|
+
multiline?: boolean
|
|
11548
|
+
minElements?: number
|
|
11549
|
+
consistent?: boolean
|
|
11550
|
+
})
|
|
11551
|
+
TSEnumBody?: (("always" | "never") | {
|
|
11552
|
+
multiline?: boolean
|
|
11553
|
+
minElements?: number
|
|
11554
|
+
consistent?: boolean
|
|
11555
|
+
})
|
|
11556
|
+
TSInterfaceBody?: (("always" | "never") | {
|
|
11557
|
+
multiline?: boolean
|
|
11558
|
+
minElements?: number
|
|
11559
|
+
consistent?: boolean
|
|
11560
|
+
})
|
|
11561
|
+
TSModuleBlock?: (("always" | "never") | {
|
|
11562
|
+
multiline?: boolean
|
|
11563
|
+
minElements?: number
|
|
11564
|
+
consistent?: boolean
|
|
11565
|
+
})
|
|
11566
|
+
multiline?: boolean
|
|
11567
|
+
minElements?: number
|
|
11568
|
+
consistent?: boolean
|
|
11569
|
+
})]
|
|
11367
11570
|
// ----- style/dot-location -----
|
|
11368
11571
|
type StyleDotLocation = []|[("object" | "property")]
|
|
11369
11572
|
// ----- style/eol-last -----
|
|
@@ -11443,6 +11646,8 @@ type StyleJsxClosingBracketLocation = []|[(("after-props" | "props-aligned" | "t
|
|
|
11443
11646
|
nonEmpty?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
11444
11647
|
selfClosing?: (("after-props" | "props-aligned" | "tag-aligned" | "line-aligned") | false)
|
|
11445
11648
|
})]
|
|
11649
|
+
// ----- style/jsx-closing-tag-location -----
|
|
11650
|
+
type StyleJsxClosingTagLocation = []|[("tag-aligned" | "line-aligned")]
|
|
11446
11651
|
// ----- style/jsx-curly-brace-presence -----
|
|
11447
11652
|
type StyleJsxCurlyBracePresence = []|[({
|
|
11448
11653
|
props?: ("always" | "never" | "ignore")
|
|
@@ -12697,6 +12902,11 @@ type TsArrayType = []|[{
|
|
|
12697
12902
|
}]
|
|
12698
12903
|
// ----- ts/ban-ts-comment -----
|
|
12699
12904
|
type TsBanTsComment = []|[{
|
|
12905
|
+
|
|
12906
|
+
minimumDescriptionLength?: number
|
|
12907
|
+
"ts-check"?: (boolean | "allow-with-description" | {
|
|
12908
|
+
descriptionFormat?: string
|
|
12909
|
+
})
|
|
12700
12910
|
"ts-expect-error"?: (boolean | "allow-with-description" | {
|
|
12701
12911
|
descriptionFormat?: string
|
|
12702
12912
|
})
|
|
@@ -12706,24 +12916,19 @@ type TsBanTsComment = []|[{
|
|
|
12706
12916
|
"ts-nocheck"?: (boolean | "allow-with-description" | {
|
|
12707
12917
|
descriptionFormat?: string
|
|
12708
12918
|
})
|
|
12709
|
-
"ts-check"?: (boolean | "allow-with-description" | {
|
|
12710
|
-
descriptionFormat?: string
|
|
12711
|
-
})
|
|
12712
|
-
|
|
12713
|
-
minimumDescriptionLength?: number
|
|
12714
12919
|
}]
|
|
12715
12920
|
// ----- ts/class-literal-property-style -----
|
|
12716
12921
|
type TsClassLiteralPropertyStyle = []|[("fields" | "getters")]
|
|
12717
12922
|
// ----- ts/class-methods-use-this -----
|
|
12718
12923
|
type TsClassMethodsUseThis = []|[{
|
|
12719
12924
|
|
|
12720
|
-
exceptMethods?: string[]
|
|
12721
|
-
|
|
12722
12925
|
enforceForClassFields?: boolean
|
|
12723
12926
|
|
|
12724
|
-
|
|
12927
|
+
exceptMethods?: string[]
|
|
12725
12928
|
|
|
12726
12929
|
ignoreClassesThatImplementAnInterface?: (boolean | "public-fields")
|
|
12930
|
+
|
|
12931
|
+
ignoreOverrideMethods?: boolean
|
|
12727
12932
|
}]
|
|
12728
12933
|
// ----- ts/consistent-generic-constructors -----
|
|
12729
12934
|
type TsConsistentGenericConstructors = []|[("type-annotation" | "constructor")]
|
|
@@ -12762,6 +12967,8 @@ type TsConsistentTypeImports = []|[{
|
|
|
12762
12967
|
// ----- ts/dot-notation -----
|
|
12763
12968
|
type TsDotNotation = []|[{
|
|
12764
12969
|
|
|
12970
|
+
allowIndexSignaturePropertyAccess?: boolean
|
|
12971
|
+
|
|
12765
12972
|
allowKeywords?: boolean
|
|
12766
12973
|
|
|
12767
12974
|
allowPattern?: string
|
|
@@ -12769,40 +12976,38 @@ type TsDotNotation = []|[{
|
|
|
12769
12976
|
allowPrivateClassPropertyAccess?: boolean
|
|
12770
12977
|
|
|
12771
12978
|
allowProtectedClassPropertyAccess?: boolean
|
|
12772
|
-
|
|
12773
|
-
allowIndexSignaturePropertyAccess?: boolean
|
|
12774
12979
|
}]
|
|
12775
12980
|
// ----- ts/explicit-function-return-type -----
|
|
12776
12981
|
type TsExplicitFunctionReturnType = []|[{
|
|
12777
12982
|
|
|
12778
12983
|
allowConciseArrowFunctionExpressionsStartingWithVoid?: boolean
|
|
12779
12984
|
|
|
12780
|
-
|
|
12781
|
-
|
|
12782
|
-
allowHigherOrderFunctions?: boolean
|
|
12985
|
+
allowDirectConstAssertionInArrowFunctions?: boolean
|
|
12783
12986
|
|
|
12784
|
-
|
|
12987
|
+
allowedNames?: string[]
|
|
12785
12988
|
|
|
12786
|
-
|
|
12989
|
+
allowExpressions?: boolean
|
|
12787
12990
|
|
|
12788
12991
|
allowFunctionsWithoutTypeParameters?: boolean
|
|
12789
12992
|
|
|
12790
|
-
|
|
12993
|
+
allowHigherOrderFunctions?: boolean
|
|
12791
12994
|
|
|
12792
12995
|
allowIIFEs?: boolean
|
|
12996
|
+
|
|
12997
|
+
allowTypedFunctionExpressions?: boolean
|
|
12793
12998
|
}]
|
|
12794
12999
|
// ----- ts/explicit-member-accessibility -----
|
|
12795
13000
|
type TsExplicitMemberAccessibility = []|[{
|
|
12796
13001
|
accessibility?: ("explicit" | "no-public" | "off")
|
|
13002
|
+
|
|
13003
|
+
ignoredMethodNames?: string[]
|
|
12797
13004
|
overrides?: {
|
|
12798
13005
|
accessors?: ("explicit" | "no-public" | "off")
|
|
12799
13006
|
constructors?: ("explicit" | "no-public" | "off")
|
|
12800
13007
|
methods?: ("explicit" | "no-public" | "off")
|
|
12801
|
-
properties?: ("explicit" | "no-public" | "off")
|
|
12802
13008
|
parameterProperties?: ("explicit" | "no-public" | "off")
|
|
13009
|
+
properties?: ("explicit" | "no-public" | "off")
|
|
12803
13010
|
}
|
|
12804
|
-
|
|
12805
|
-
ignoredMethodNames?: string[]
|
|
12806
13011
|
}]
|
|
12807
13012
|
// ----- ts/explicit-module-boundary-types -----
|
|
12808
13013
|
type TsExplicitModuleBoundaryTypes = []|[{
|
|
@@ -12824,38 +13029,38 @@ type TsInitDeclarations = ([]|["always"] | []|["never"]|["never", {
|
|
|
12824
13029
|
// ----- ts/max-params -----
|
|
12825
13030
|
type TsMaxParams = []|[{
|
|
12826
13031
|
|
|
13032
|
+
countVoidThis?: boolean
|
|
13033
|
+
|
|
12827
13034
|
max?: number
|
|
12828
13035
|
|
|
12829
13036
|
maximum?: number
|
|
12830
|
-
|
|
12831
|
-
countVoidThis?: boolean
|
|
12832
13037
|
}]
|
|
12833
13038
|
// ----- ts/member-ordering -----
|
|
12834
13039
|
type TsMemberOrdering = []|[{
|
|
12835
|
-
default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
12836
|
-
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
12837
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12838
|
-
optionalityOrder?: ("optional-first" | "required-first")
|
|
12839
|
-
})
|
|
12840
13040
|
classes?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
12841
13041
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
12842
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12843
13042
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
13043
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12844
13044
|
})
|
|
12845
13045
|
classExpressions?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
12846
13046
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
13047
|
+
optionalityOrder?: ("optional-first" | "required-first")
|
|
12847
13048
|
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
13049
|
+
})
|
|
13050
|
+
default?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | {
|
|
13051
|
+
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization") | ("readonly-signature" | "signature" | "readonly-field" | "public-readonly-field" | "public-decorated-readonly-field" | "decorated-readonly-field" | "static-readonly-field" | "public-static-readonly-field" | "instance-readonly-field" | "public-instance-readonly-field" | "abstract-readonly-field" | "public-abstract-readonly-field" | "protected-readonly-field" | "protected-decorated-readonly-field" | "protected-static-readonly-field" | "protected-instance-readonly-field" | "protected-abstract-readonly-field" | "private-readonly-field" | "private-decorated-readonly-field" | "private-static-readonly-field" | "private-instance-readonly-field" | "#private-readonly-field" | "#private-static-readonly-field" | "#private-instance-readonly-field" | "field" | "public-field" | "public-decorated-field" | "decorated-field" | "static-field" | "public-static-field" | "instance-field" | "public-instance-field" | "abstract-field" | "public-abstract-field" | "protected-field" | "protected-decorated-field" | "protected-static-field" | "protected-instance-field" | "protected-abstract-field" | "private-field" | "private-decorated-field" | "private-static-field" | "private-instance-field" | "#private-field" | "#private-static-field" | "#private-instance-field" | "method" | "public-method" | "public-decorated-method" | "decorated-method" | "static-method" | "public-static-method" | "instance-method" | "public-instance-method" | "abstract-method" | "public-abstract-method" | "protected-method" | "protected-decorated-method" | "protected-static-method" | "protected-instance-method" | "protected-abstract-method" | "private-method" | "private-decorated-method" | "private-static-method" | "private-instance-method" | "#private-method" | "#private-static-method" | "#private-instance-method" | "call-signature" | "constructor" | "public-constructor" | "protected-constructor" | "private-constructor" | "accessor" | "public-accessor" | "public-decorated-accessor" | "decorated-accessor" | "static-accessor" | "public-static-accessor" | "instance-accessor" | "public-instance-accessor" | "abstract-accessor" | "public-abstract-accessor" | "protected-accessor" | "protected-decorated-accessor" | "protected-static-accessor" | "protected-instance-accessor" | "protected-abstract-accessor" | "private-accessor" | "private-decorated-accessor" | "private-static-accessor" | "private-instance-accessor" | "#private-accessor" | "#private-static-accessor" | "#private-instance-accessor" | "get" | "public-get" | "public-decorated-get" | "decorated-get" | "static-get" | "public-static-get" | "instance-get" | "public-instance-get" | "abstract-get" | "public-abstract-get" | "protected-get" | "protected-decorated-get" | "protected-static-get" | "protected-instance-get" | "protected-abstract-get" | "private-get" | "private-decorated-get" | "private-static-get" | "private-instance-get" | "#private-get" | "#private-static-get" | "#private-instance-get" | "set" | "public-set" | "public-decorated-set" | "decorated-set" | "static-set" | "public-static-set" | "instance-set" | "public-instance-set" | "abstract-set" | "public-abstract-set" | "protected-set" | "protected-decorated-set" | "protected-static-set" | "protected-instance-set" | "protected-abstract-set" | "private-set" | "private-decorated-set" | "private-static-set" | "private-instance-set" | "#private-set" | "#private-static-set" | "#private-instance-set" | "static-initialization" | "static-static-initialization" | "public-static-static-initialization" | "instance-static-initialization" | "public-instance-static-initialization" | "abstract-static-initialization" | "public-abstract-static-initialization" | "protected-static-static-initialization" | "protected-instance-static-initialization" | "protected-abstract-static-initialization" | "private-static-static-initialization" | "private-instance-static-initialization" | "#private-static-static-initialization" | "#private-instance-static-initialization")[])[] | "never")
|
|
12848
13052
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
13053
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12849
13054
|
})
|
|
12850
13055
|
interfaces?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
12851
13056
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
12852
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12853
13057
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
13058
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12854
13059
|
})
|
|
12855
13060
|
typeLiterals?: ("never" | (("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | {
|
|
12856
13061
|
memberTypes?: ((("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor") | ("readonly-signature" | "signature" | "readonly-field" | "field" | "method" | "constructor")[])[] | "never")
|
|
12857
|
-
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12858
13062
|
optionalityOrder?: ("optional-first" | "required-first")
|
|
13063
|
+
order?: ("alphabetically" | "alphabetically-case-insensitive" | "as-written" | "natural" | "natural-case-insensitive")
|
|
12859
13064
|
})
|
|
12860
13065
|
}]
|
|
12861
13066
|
// ----- ts/method-signature-style -----
|
|
@@ -12867,310 +13072,310 @@ type _TsNamingConventionUnderscoreOptions = ("forbid" | "allow" | "require" | "r
|
|
|
12867
13072
|
type _TsNamingConvention_PrefixSuffixConfig = string[]
|
|
12868
13073
|
type _TsNamingConventionTypeModifiers = ("boolean" | "string" | "number" | "function" | "array")
|
|
12869
13074
|
type TsNamingConvention = ({
|
|
12870
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12871
13075
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13076
|
+
failureMessage?: string
|
|
13077
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12872
13078
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12873
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12874
13079
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12875
13080
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12876
|
-
|
|
13081
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12877
13082
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12878
|
-
selector: ("default" | "variableLike" | "memberLike" | "typeLike" | "method" | "property" | "accessor" | "variable" | "function" | "parameter" | "parameterProperty" | "classicAccessor" | "enumMember" | "classMethod" | "objectLiteralMethod" | "typeMethod" | "classProperty" | "objectLiteralProperty" | "typeProperty" | "autoAccessor" | "class" | "interface" | "typeAlias" | "enum" | "typeParameter" | "import")[]
|
|
12879
13083
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
13084
|
+
selector: ("default" | "variableLike" | "memberLike" | "typeLike" | "method" | "property" | "accessor" | "variable" | "function" | "parameter" | "parameterProperty" | "classicAccessor" | "enumMember" | "classMethod" | "objectLiteralMethod" | "typeMethod" | "classProperty" | "objectLiteralProperty" | "typeProperty" | "autoAccessor" | "class" | "interface" | "typeAlias" | "enum" | "typeParameter" | "import")[]
|
|
12880
13085
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12881
13086
|
} | {
|
|
12882
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12883
13087
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13088
|
+
failureMessage?: string
|
|
13089
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12884
13090
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12885
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12886
13091
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12887
13092
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12888
|
-
|
|
13093
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12889
13094
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12890
13095
|
selector: "default"
|
|
12891
13096
|
modifiers?: ("const" | "readonly" | "static" | "public" | "protected" | "private" | "#private" | "abstract" | "destructured" | "global" | "exported" | "unused" | "requiresQuotes" | "override" | "async" | "default" | "namespace")[]
|
|
12892
13097
|
} | {
|
|
12893
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12894
13098
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13099
|
+
failureMessage?: string
|
|
13100
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12895
13101
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12896
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12897
13102
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12898
13103
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12899
|
-
|
|
13104
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12900
13105
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12901
13106
|
selector: "variableLike"
|
|
12902
13107
|
modifiers?: ("unused" | "async")[]
|
|
12903
13108
|
} | {
|
|
12904
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12905
13109
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13110
|
+
failureMessage?: string
|
|
13111
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12906
13112
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12907
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12908
13113
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12909
13114
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12910
|
-
|
|
13115
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12911
13116
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12912
13117
|
selector: "variable"
|
|
12913
13118
|
modifiers?: ("const" | "destructured" | "exported" | "global" | "unused" | "async")[]
|
|
12914
13119
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12915
13120
|
} | {
|
|
12916
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12917
13121
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13122
|
+
failureMessage?: string
|
|
13123
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12918
13124
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12919
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12920
13125
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12921
13126
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12922
|
-
|
|
13127
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12923
13128
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12924
13129
|
selector: "function"
|
|
12925
13130
|
modifiers?: ("exported" | "global" | "unused" | "async")[]
|
|
12926
13131
|
} | {
|
|
12927
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12928
13132
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13133
|
+
failureMessage?: string
|
|
13134
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12929
13135
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12930
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12931
13136
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12932
13137
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12933
|
-
|
|
13138
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12934
13139
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12935
13140
|
selector: "parameter"
|
|
12936
13141
|
modifiers?: ("destructured" | "unused")[]
|
|
12937
13142
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12938
13143
|
} | {
|
|
12939
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12940
13144
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13145
|
+
failureMessage?: string
|
|
13146
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12941
13147
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12942
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12943
13148
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12944
13149
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12945
|
-
|
|
13150
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12946
13151
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12947
13152
|
selector: "memberLike"
|
|
12948
13153
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
12949
13154
|
} | {
|
|
12950
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12951
13155
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13156
|
+
failureMessage?: string
|
|
13157
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12952
13158
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12953
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12954
13159
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12955
13160
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12956
|
-
|
|
13161
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12957
13162
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12958
13163
|
selector: "classProperty"
|
|
12959
13164
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override")[]
|
|
12960
13165
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12961
13166
|
} | {
|
|
12962
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12963
13167
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13168
|
+
failureMessage?: string
|
|
13169
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12964
13170
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12965
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12966
13171
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12967
13172
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12968
|
-
|
|
13173
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12969
13174
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12970
13175
|
selector: "objectLiteralProperty"
|
|
12971
13176
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
12972
13177
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12973
13178
|
} | {
|
|
12974
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12975
13179
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13180
|
+
failureMessage?: string
|
|
13181
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12976
13182
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12977
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12978
13183
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12979
13184
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12980
|
-
|
|
13185
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12981
13186
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12982
13187
|
selector: "typeProperty"
|
|
12983
13188
|
modifiers?: ("public" | "readonly" | "requiresQuotes")[]
|
|
12984
13189
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12985
13190
|
} | {
|
|
12986
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12987
13191
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13192
|
+
failureMessage?: string
|
|
13193
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
12988
13194
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12989
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12990
13195
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12991
13196
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
12992
|
-
|
|
13197
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
12993
13198
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
12994
13199
|
selector: "parameterProperty"
|
|
12995
13200
|
modifiers?: ("private" | "protected" | "public" | "readonly")[]
|
|
12996
13201
|
types?: _TsNamingConventionTypeModifiers[]
|
|
12997
13202
|
} | {
|
|
12998
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
12999
13203
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13204
|
+
failureMessage?: string
|
|
13205
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13000
13206
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13001
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13002
13207
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13003
13208
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13004
|
-
|
|
13209
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13005
13210
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13006
13211
|
selector: "property"
|
|
13007
13212
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "readonly" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
13008
13213
|
types?: _TsNamingConventionTypeModifiers[]
|
|
13009
13214
|
} | {
|
|
13010
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13011
13215
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13216
|
+
failureMessage?: string
|
|
13217
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13012
13218
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13013
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13014
13219
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13015
13220
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13016
|
-
|
|
13221
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13017
13222
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13018
13223
|
selector: "classMethod"
|
|
13019
13224
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
13020
13225
|
} | {
|
|
13021
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13022
13226
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13227
|
+
failureMessage?: string
|
|
13228
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13023
13229
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13024
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13025
13230
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13026
13231
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13027
|
-
|
|
13232
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13028
13233
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13029
13234
|
selector: "objectLiteralMethod"
|
|
13030
13235
|
modifiers?: ("public" | "requiresQuotes" | "async")[]
|
|
13031
13236
|
} | {
|
|
13032
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13033
13237
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13238
|
+
failureMessage?: string
|
|
13239
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13034
13240
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13035
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13036
13241
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13037
13242
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13038
|
-
|
|
13243
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13039
13244
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13040
13245
|
selector: "typeMethod"
|
|
13041
13246
|
modifiers?: ("public" | "requiresQuotes")[]
|
|
13042
13247
|
} | {
|
|
13043
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13044
13248
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13249
|
+
failureMessage?: string
|
|
13250
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13045
13251
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13046
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13047
13252
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13048
13253
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13049
|
-
|
|
13254
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13050
13255
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13051
13256
|
selector: "method"
|
|
13052
13257
|
modifiers?: ("abstract" | "private" | "#private" | "protected" | "public" | "requiresQuotes" | "static" | "override" | "async")[]
|
|
13053
13258
|
} | {
|
|
13054
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13055
13259
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13260
|
+
failureMessage?: string
|
|
13261
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13056
13262
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13057
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13058
13263
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13059
13264
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13060
|
-
|
|
13265
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13061
13266
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13062
13267
|
selector: "classicAccessor"
|
|
13063
13268
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
13064
13269
|
types?: _TsNamingConventionTypeModifiers[]
|
|
13065
13270
|
} | {
|
|
13066
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13067
13271
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13272
|
+
failureMessage?: string
|
|
13273
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13068
13274
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13069
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13070
13275
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13071
13276
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13072
|
-
|
|
13277
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13073
13278
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13074
13279
|
selector: "autoAccessor"
|
|
13075
13280
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
13076
13281
|
types?: _TsNamingConventionTypeModifiers[]
|
|
13077
13282
|
} | {
|
|
13078
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13079
13283
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13284
|
+
failureMessage?: string
|
|
13285
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13080
13286
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13081
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13082
13287
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13083
13288
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13084
|
-
|
|
13289
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13085
13290
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13086
13291
|
selector: "accessor"
|
|
13087
13292
|
modifiers?: ("abstract" | "private" | "protected" | "public" | "requiresQuotes" | "static" | "override")[]
|
|
13088
13293
|
types?: _TsNamingConventionTypeModifiers[]
|
|
13089
13294
|
} | {
|
|
13090
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13091
13295
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13296
|
+
failureMessage?: string
|
|
13297
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13092
13298
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13093
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13094
13299
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13095
13300
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13096
|
-
|
|
13301
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13097
13302
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13098
13303
|
selector: "enumMember"
|
|
13099
13304
|
modifiers?: ("requiresQuotes")[]
|
|
13100
13305
|
} | {
|
|
13101
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13102
13306
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13307
|
+
failureMessage?: string
|
|
13308
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13103
13309
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13104
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13105
13310
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13106
13311
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13107
|
-
|
|
13312
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13108
13313
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13109
13314
|
selector: "typeLike"
|
|
13110
13315
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
13111
13316
|
} | {
|
|
13112
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13113
13317
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13318
|
+
failureMessage?: string
|
|
13319
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13114
13320
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13115
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13116
13321
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13117
13322
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13118
|
-
|
|
13323
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13119
13324
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13120
13325
|
selector: "class"
|
|
13121
13326
|
modifiers?: ("abstract" | "exported" | "unused")[]
|
|
13122
13327
|
} | {
|
|
13123
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13124
13328
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13329
|
+
failureMessage?: string
|
|
13330
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13125
13331
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13126
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13127
13332
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13128
13333
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13129
|
-
|
|
13334
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13130
13335
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13131
13336
|
selector: "interface"
|
|
13132
13337
|
modifiers?: ("exported" | "unused")[]
|
|
13133
13338
|
} | {
|
|
13134
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13135
13339
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13340
|
+
failureMessage?: string
|
|
13341
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13136
13342
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13137
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13138
13343
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13139
13344
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13140
|
-
|
|
13345
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13141
13346
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13142
13347
|
selector: "typeAlias"
|
|
13143
13348
|
modifiers?: ("exported" | "unused")[]
|
|
13144
13349
|
} | {
|
|
13145
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13146
13350
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13351
|
+
failureMessage?: string
|
|
13352
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13147
13353
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13148
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13149
13354
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13150
13355
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13151
|
-
|
|
13356
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13152
13357
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13153
13358
|
selector: "enum"
|
|
13154
13359
|
modifiers?: ("exported" | "unused")[]
|
|
13155
13360
|
} | {
|
|
13156
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13157
13361
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13362
|
+
failureMessage?: string
|
|
13363
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13158
13364
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13159
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13160
13365
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13161
13366
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13162
|
-
|
|
13367
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13163
13368
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13164
13369
|
selector: "typeParameter"
|
|
13165
13370
|
modifiers?: ("unused")[]
|
|
13166
13371
|
} | {
|
|
13167
|
-
format: _TsNamingConventionFormatOptionsConfig
|
|
13168
13372
|
custom?: _TsNamingConvention_MatchRegexConfig
|
|
13373
|
+
failureMessage?: string
|
|
13374
|
+
format: _TsNamingConventionFormatOptionsConfig
|
|
13169
13375
|
leadingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13170
|
-
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13171
13376
|
prefix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13172
13377
|
suffix?: _TsNamingConvention_PrefixSuffixConfig
|
|
13173
|
-
|
|
13378
|
+
trailingUnderscore?: _TsNamingConventionUnderscoreOptions
|
|
13174
13379
|
filter?: (string | _TsNamingConvention_MatchRegexConfig)
|
|
13175
13380
|
selector: "import"
|
|
13176
13381
|
modifiers?: ("default" | "namespace")[]
|
|
@@ -13238,7 +13443,7 @@ type TsNoExtraneousClass = []|[{
|
|
|
13238
13443
|
// ----- ts/no-floating-promises -----
|
|
13239
13444
|
type TsNoFloatingPromises = []|[{
|
|
13240
13445
|
|
|
13241
|
-
|
|
13446
|
+
allowForKnownSafeCalls?: (string | {
|
|
13242
13447
|
from: "file"
|
|
13243
13448
|
name: (string | [string, ...(string)[]])
|
|
13244
13449
|
path?: string
|
|
@@ -13251,7 +13456,7 @@ type TsNoFloatingPromises = []|[{
|
|
|
13251
13456
|
package: string
|
|
13252
13457
|
})[]
|
|
13253
13458
|
|
|
13254
|
-
|
|
13459
|
+
allowForKnownSafePromises?: (string | {
|
|
13255
13460
|
from: "file"
|
|
13256
13461
|
name: (string | [string, ...(string)[]])
|
|
13257
13462
|
path?: string
|
|
@@ -13266,9 +13471,9 @@ type TsNoFloatingPromises = []|[{
|
|
|
13266
13471
|
|
|
13267
13472
|
checkThenables?: boolean
|
|
13268
13473
|
|
|
13269
|
-
ignoreVoid?: boolean
|
|
13270
|
-
|
|
13271
13474
|
ignoreIIFE?: boolean
|
|
13475
|
+
|
|
13476
|
+
ignoreVoid?: boolean
|
|
13272
13477
|
}]
|
|
13273
13478
|
// ----- ts/no-inferrable-types -----
|
|
13274
13479
|
type TsNoInferrableTypes = []|[{
|
|
@@ -13284,9 +13489,9 @@ type TsNoInvalidThis = []|[{
|
|
|
13284
13489
|
// ----- ts/no-invalid-void-type -----
|
|
13285
13490
|
type TsNoInvalidVoidType = []|[{
|
|
13286
13491
|
|
|
13287
|
-
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
13288
|
-
|
|
13289
13492
|
allowAsThisParameter?: boolean
|
|
13493
|
+
|
|
13494
|
+
allowInGenericTypeArguments?: (boolean | [string, ...(string)[]])
|
|
13290
13495
|
}]
|
|
13291
13496
|
// ----- ts/no-magic-numbers -----
|
|
13292
13497
|
type TsNoMagicNumbers = []|[{
|
|
@@ -13297,10 +13502,10 @@ type TsNoMagicNumbers = []|[{
|
|
|
13297
13502
|
ignoreDefaultValues?: boolean
|
|
13298
13503
|
ignoreClassFieldInitialValues?: boolean
|
|
13299
13504
|
|
|
13300
|
-
ignoreNumericLiteralTypes?: boolean
|
|
13301
|
-
|
|
13302
13505
|
ignoreEnums?: boolean
|
|
13303
13506
|
|
|
13507
|
+
ignoreNumericLiteralTypes?: boolean
|
|
13508
|
+
|
|
13304
13509
|
ignoreReadonlyClassProperties?: boolean
|
|
13305
13510
|
|
|
13306
13511
|
ignoreTypeIndexes?: boolean
|
|
@@ -13313,6 +13518,8 @@ type TsNoMeaninglessVoidOperator = []|[{
|
|
|
13313
13518
|
// ----- ts/no-misused-promises -----
|
|
13314
13519
|
type TsNoMisusedPromises = []|[{
|
|
13315
13520
|
checksConditionals?: boolean
|
|
13521
|
+
|
|
13522
|
+
checksSpreads?: boolean
|
|
13316
13523
|
checksVoidReturn?: (boolean | {
|
|
13317
13524
|
|
|
13318
13525
|
arguments?: boolean
|
|
@@ -13327,8 +13534,6 @@ type TsNoMisusedPromises = []|[{
|
|
|
13327
13534
|
|
|
13328
13535
|
variables?: boolean
|
|
13329
13536
|
})
|
|
13330
|
-
|
|
13331
|
-
checksSpreads?: boolean
|
|
13332
13537
|
}]
|
|
13333
13538
|
// ----- ts/no-namespace -----
|
|
13334
13539
|
type TsNoNamespace = []|[{
|
|
@@ -13389,10 +13594,10 @@ type TsNoRestrictedTypes = []|[{
|
|
|
13389
13594
|
types?: {
|
|
13390
13595
|
[k: string]: (true | string | {
|
|
13391
13596
|
|
|
13392
|
-
message?: string
|
|
13393
|
-
|
|
13394
13597
|
fixWith?: string
|
|
13395
13598
|
|
|
13599
|
+
message?: string
|
|
13600
|
+
|
|
13396
13601
|
suggest?: string[]
|
|
13397
13602
|
}) | undefined
|
|
13398
13603
|
}
|
|
@@ -13400,17 +13605,17 @@ type TsNoRestrictedTypes = []|[{
|
|
|
13400
13605
|
// ----- ts/no-shadow -----
|
|
13401
13606
|
type TsNoShadow = []|[{
|
|
13402
13607
|
|
|
13608
|
+
allow?: string[]
|
|
13609
|
+
|
|
13403
13610
|
builtinGlobals?: boolean
|
|
13404
13611
|
|
|
13405
13612
|
hoist?: ("all" | "functions" | "never")
|
|
13406
13613
|
|
|
13407
|
-
|
|
13614
|
+
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
13408
13615
|
|
|
13409
13616
|
ignoreOnInitialization?: boolean
|
|
13410
13617
|
|
|
13411
13618
|
ignoreTypeValueShadow?: boolean
|
|
13412
|
-
|
|
13413
|
-
ignoreFunctionTypeParameterNameValueShadow?: boolean
|
|
13414
13619
|
}]
|
|
13415
13620
|
// ----- ts/no-this-alias -----
|
|
13416
13621
|
type TsNoThisAlias = []|[{
|
|
@@ -13430,20 +13635,20 @@ type TsNoTypeAlias = []|[{
|
|
|
13430
13635
|
|
|
13431
13636
|
allowConstructors?: ("always" | "never")
|
|
13432
13637
|
|
|
13638
|
+
allowGenerics?: ("always" | "never")
|
|
13639
|
+
|
|
13433
13640
|
allowLiterals?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
13434
13641
|
|
|
13435
13642
|
allowMappedTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
13436
13643
|
|
|
13437
13644
|
allowTupleTypes?: ("always" | "never" | "in-unions" | "in-intersections" | "in-unions-and-intersections")
|
|
13438
|
-
|
|
13439
|
-
allowGenerics?: ("always" | "never")
|
|
13440
13645
|
}]
|
|
13441
13646
|
// ----- ts/no-unnecessary-boolean-literal-compare -----
|
|
13442
13647
|
type TsNoUnnecessaryBooleanLiteralCompare = []|[{
|
|
13443
13648
|
|
|
13444
|
-
allowComparingNullableBooleansToTrue?: boolean
|
|
13445
|
-
|
|
13446
13649
|
allowComparingNullableBooleansToFalse?: boolean
|
|
13650
|
+
|
|
13651
|
+
allowComparingNullableBooleansToTrue?: boolean
|
|
13447
13652
|
}]
|
|
13448
13653
|
// ----- ts/no-unnecessary-condition -----
|
|
13449
13654
|
type TsNoUnnecessaryCondition = []|[{
|
|
@@ -13469,10 +13674,6 @@ type TsNoUnusedExpressions = []|[{
|
|
|
13469
13674
|
// ----- ts/no-unused-vars -----
|
|
13470
13675
|
type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
13471
13676
|
|
|
13472
|
-
vars?: ("all" | "local")
|
|
13473
|
-
|
|
13474
|
-
varsIgnorePattern?: string
|
|
13475
|
-
|
|
13476
13677
|
args?: ("all" | "after-used" | "none")
|
|
13477
13678
|
|
|
13478
13679
|
argsIgnorePattern?: string
|
|
@@ -13488,22 +13689,26 @@ type TsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
13488
13689
|
ignoreRestSiblings?: boolean
|
|
13489
13690
|
|
|
13490
13691
|
reportUsedIgnorePattern?: boolean
|
|
13692
|
+
|
|
13693
|
+
vars?: ("all" | "local")
|
|
13694
|
+
|
|
13695
|
+
varsIgnorePattern?: string
|
|
13491
13696
|
})]
|
|
13492
13697
|
// ----- ts/no-use-before-define -----
|
|
13493
13698
|
type TsNoUseBeforeDefine = []|[("nofunc" | {
|
|
13494
|
-
|
|
13495
|
-
functions?: boolean
|
|
13699
|
+
allowNamedExports?: boolean
|
|
13496
13700
|
|
|
13497
13701
|
classes?: boolean
|
|
13498
13702
|
|
|
13499
13703
|
enums?: boolean
|
|
13500
13704
|
|
|
13501
|
-
|
|
13705
|
+
functions?: boolean
|
|
13706
|
+
|
|
13707
|
+
ignoreTypeReferences?: boolean
|
|
13502
13708
|
|
|
13503
13709
|
typedefs?: boolean
|
|
13504
13710
|
|
|
13505
|
-
|
|
13506
|
-
allowNamedExports?: boolean
|
|
13711
|
+
variables?: boolean
|
|
13507
13712
|
})]
|
|
13508
13713
|
// ----- ts/no-var-requires -----
|
|
13509
13714
|
type TsNoVarRequires = []|[{
|
|
@@ -13526,11 +13731,11 @@ type TsParameterProperties = []|[{
|
|
|
13526
13731
|
}]
|
|
13527
13732
|
// ----- ts/prefer-destructuring -----
|
|
13528
13733
|
type TsPreferDestructuring = []|[({
|
|
13529
|
-
|
|
13734
|
+
AssignmentExpression?: {
|
|
13530
13735
|
array?: boolean
|
|
13531
13736
|
object?: boolean
|
|
13532
13737
|
}
|
|
13533
|
-
|
|
13738
|
+
VariableDeclarator?: {
|
|
13534
13739
|
array?: boolean
|
|
13535
13740
|
object?: boolean
|
|
13536
13741
|
}
|
|
@@ -13538,11 +13743,11 @@ type TsPreferDestructuring = []|[({
|
|
|
13538
13743
|
array?: boolean
|
|
13539
13744
|
object?: boolean
|
|
13540
13745
|
})]|[({
|
|
13541
|
-
|
|
13746
|
+
AssignmentExpression?: {
|
|
13542
13747
|
array?: boolean
|
|
13543
13748
|
object?: boolean
|
|
13544
13749
|
}
|
|
13545
|
-
|
|
13750
|
+
VariableDeclarator?: {
|
|
13546
13751
|
array?: boolean
|
|
13547
13752
|
object?: boolean
|
|
13548
13753
|
}
|
|
@@ -13550,8 +13755,8 @@ type TsPreferDestructuring = []|[({
|
|
|
13550
13755
|
array?: boolean
|
|
13551
13756
|
object?: boolean
|
|
13552
13757
|
}), {
|
|
13553
|
-
enforceForRenamedProperties?: boolean
|
|
13554
13758
|
enforceForDeclarationWithTypeAnnotation?: boolean
|
|
13759
|
+
enforceForRenamedProperties?: boolean
|
|
13555
13760
|
[k: string]: unknown | undefined
|
|
13556
13761
|
}]
|
|
13557
13762
|
// ----- ts/prefer-literal-enum-member -----
|
|
@@ -13581,21 +13786,21 @@ type TsPreferNullishCoalescing = []|[{
|
|
|
13581
13786
|
// ----- ts/prefer-optional-chain -----
|
|
13582
13787
|
type TsPreferOptionalChain = []|[{
|
|
13583
13788
|
|
|
13789
|
+
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
13790
|
+
|
|
13584
13791
|
checkAny?: boolean
|
|
13585
13792
|
|
|
13586
|
-
|
|
13793
|
+
checkBigInt?: boolean
|
|
13587
13794
|
|
|
13588
|
-
|
|
13795
|
+
checkBoolean?: boolean
|
|
13589
13796
|
|
|
13590
13797
|
checkNumber?: boolean
|
|
13591
13798
|
|
|
13592
|
-
|
|
13799
|
+
checkString?: boolean
|
|
13593
13800
|
|
|
13594
|
-
|
|
13801
|
+
checkUnknown?: boolean
|
|
13595
13802
|
|
|
13596
13803
|
requireNullish?: boolean
|
|
13597
|
-
|
|
13598
|
-
allowPotentiallyUnsafeFixesThatModifyTheReturnTypeIKnowWhatImDoing?: boolean
|
|
13599
13804
|
}]
|
|
13600
13805
|
// ----- ts/prefer-promise-reject-errors -----
|
|
13601
13806
|
type TsPreferPromiseRejectErrors = []|[{
|
|
@@ -13704,33 +13909,33 @@ type TsReturnAwait = []|[(("always" | "error-handling-correctness-only" | "in-tr
|
|
|
13704
13909
|
// ----- ts/sort-type-constituents -----
|
|
13705
13910
|
type TsSortTypeConstituents = []|[{
|
|
13706
13911
|
|
|
13912
|
+
caseSensitive?: boolean
|
|
13913
|
+
|
|
13707
13914
|
checkIntersections?: boolean
|
|
13708
13915
|
|
|
13709
13916
|
checkUnions?: boolean
|
|
13710
13917
|
|
|
13711
|
-
caseSensitive?: boolean
|
|
13712
|
-
|
|
13713
13918
|
groupOrder?: ("conditional" | "function" | "import" | "intersection" | "keyword" | "nullish" | "literal" | "named" | "object" | "operator" | "tuple" | "union")[]
|
|
13714
13919
|
}]
|
|
13715
13920
|
// ----- ts/strict-boolean-expressions -----
|
|
13716
13921
|
type TsStrictBooleanExpressions = []|[{
|
|
13717
13922
|
|
|
13718
|
-
|
|
13719
|
-
|
|
13720
|
-
allowNumber?: boolean
|
|
13721
|
-
|
|
13722
|
-
allowNullableObject?: boolean
|
|
13923
|
+
allowAny?: boolean
|
|
13723
13924
|
|
|
13724
13925
|
allowNullableBoolean?: boolean
|
|
13725
13926
|
|
|
13726
|
-
|
|
13927
|
+
allowNullableEnum?: boolean
|
|
13727
13928
|
|
|
13728
13929
|
allowNullableNumber?: boolean
|
|
13729
13930
|
|
|
13730
|
-
|
|
13931
|
+
allowNullableObject?: boolean
|
|
13731
13932
|
|
|
13732
|
-
|
|
13933
|
+
allowNullableString?: boolean
|
|
13934
|
+
|
|
13935
|
+
allowNumber?: boolean
|
|
13733
13936
|
allowRuleToRunWithoutStrictNullChecksIKnowWhatIAmDoing?: boolean
|
|
13937
|
+
|
|
13938
|
+
allowString?: boolean
|
|
13734
13939
|
}]
|
|
13735
13940
|
// ----- ts/switch-exhaustiveness-check -----
|
|
13736
13941
|
type TsSwitchExhaustivenessCheck = []|[{
|
|
@@ -13985,10 +14190,6 @@ type UnocssEnforceClassCompile = []|[{
|
|
|
13985
14190
|
// ----- unused-imports/no-unused-imports -----
|
|
13986
14191
|
type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
13987
14192
|
|
|
13988
|
-
vars?: ("all" | "local")
|
|
13989
|
-
|
|
13990
|
-
varsIgnorePattern?: string
|
|
13991
|
-
|
|
13992
14193
|
args?: ("all" | "after-used" | "none")
|
|
13993
14194
|
|
|
13994
14195
|
argsIgnorePattern?: string
|
|
@@ -14004,13 +14205,13 @@ type UnusedImportsNoUnusedImports = []|[(("all" | "local") | {
|
|
|
14004
14205
|
ignoreRestSiblings?: boolean
|
|
14005
14206
|
|
|
14006
14207
|
reportUsedIgnorePattern?: boolean
|
|
14007
|
-
})]
|
|
14008
|
-
// ----- unused-imports/no-unused-vars -----
|
|
14009
|
-
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
14010
14208
|
|
|
14011
14209
|
vars?: ("all" | "local")
|
|
14012
14210
|
|
|
14013
14211
|
varsIgnorePattern?: string
|
|
14212
|
+
})]
|
|
14213
|
+
// ----- unused-imports/no-unused-vars -----
|
|
14214
|
+
type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
14014
14215
|
|
|
14015
14216
|
args?: ("all" | "after-used" | "none")
|
|
14016
14217
|
|
|
@@ -14027,6 +14228,10 @@ type UnusedImportsNoUnusedVars = []|[(("all" | "local") | {
|
|
|
14027
14228
|
ignoreRestSiblings?: boolean
|
|
14028
14229
|
|
|
14029
14230
|
reportUsedIgnorePattern?: boolean
|
|
14231
|
+
|
|
14232
|
+
vars?: ("all" | "local")
|
|
14233
|
+
|
|
14234
|
+
varsIgnorePattern?: string
|
|
14030
14235
|
})]
|
|
14031
14236
|
// ----- use-isnan -----
|
|
14032
14237
|
type UseIsnan = []|[{
|
|
@@ -15477,7 +15682,7 @@ interface VendoredPrettierOptionsRequired {
|
|
|
15477
15682
|
/**
|
|
15478
15683
|
* Print trailing commas wherever possible.
|
|
15479
15684
|
*/
|
|
15480
|
-
trailingComma: '
|
|
15685
|
+
trailingComma: 'all' | 'es5' | 'none';
|
|
15481
15686
|
/**
|
|
15482
15687
|
* Print spaces between brackets in object literals.
|
|
15483
15688
|
*/
|
|
@@ -15511,21 +15716,21 @@ interface VendoredPrettierOptionsRequired {
|
|
|
15511
15716
|
* Include parentheses around a sole arrow function parameter.
|
|
15512
15717
|
* @default "always"
|
|
15513
15718
|
*/
|
|
15514
|
-
arrowParens: '
|
|
15719
|
+
arrowParens: 'always' | 'avoid';
|
|
15515
15720
|
/**
|
|
15516
15721
|
* Provide ability to support new languages to prettier.
|
|
15517
15722
|
*/
|
|
15518
|
-
plugins: Array<
|
|
15723
|
+
plugins: Array<any | string>;
|
|
15519
15724
|
/**
|
|
15520
15725
|
* How to handle whitespaces in HTML.
|
|
15521
15726
|
* @default "css"
|
|
15522
15727
|
*/
|
|
15523
|
-
htmlWhitespaceSensitivity: 'css' | '
|
|
15728
|
+
htmlWhitespaceSensitivity: 'css' | 'ignore' | 'strict';
|
|
15524
15729
|
/**
|
|
15525
15730
|
* Which end of line characters to apply.
|
|
15526
15731
|
* @default "lf"
|
|
15527
15732
|
*/
|
|
15528
|
-
endOfLine: 'auto' | '
|
|
15733
|
+
endOfLine: 'auto' | 'cr' | 'crlf' | 'lf';
|
|
15529
15734
|
/**
|
|
15530
15735
|
* Change when properties in objects are quoted.
|
|
15531
15736
|
* @default "as-needed"
|
|
@@ -15545,7 +15750,7 @@ interface VendoredPrettierOptionsRequired {
|
|
|
15545
15750
|
* How to handle whitespaces in XML.
|
|
15546
15751
|
* @default "preserve"
|
|
15547
15752
|
*/
|
|
15548
|
-
xmlQuoteAttributes: '
|
|
15753
|
+
xmlQuoteAttributes: 'double' | 'preserve' | 'single';
|
|
15549
15754
|
/**
|
|
15550
15755
|
* Whether to put a space inside the brackets of self-closing XML elements.
|
|
15551
15756
|
* @default true
|
|
@@ -15560,7 +15765,7 @@ interface VendoredPrettierOptionsRequired {
|
|
|
15560
15765
|
* How to handle whitespaces in XML.
|
|
15561
15766
|
* @default "ignore"
|
|
15562
15767
|
*/
|
|
15563
|
-
xmlWhitespaceSensitivity: 'ignore' | '
|
|
15768
|
+
xmlWhitespaceSensitivity: 'ignore' | 'preserve' | 'strict';
|
|
15564
15769
|
}
|
|
15565
15770
|
|
|
15566
15771
|
type Awaitable<T> = Promise<T> | T;
|