@luxass/eslint-config 5.1.0 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +245 -169
- package/dist/index.js +1 -1
- package/package.json +19 -19
package/dist/index.d.ts
CHANGED
|
@@ -1846,7 +1846,7 @@ interface RuleOptions {
|
|
|
1846
1846
|
* Disallow empty definitions
|
|
1847
1847
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-definitions.md
|
|
1848
1848
|
*/
|
|
1849
|
-
'markdown/no-empty-definitions'?: Linter.RuleEntry<
|
|
1849
|
+
'markdown/no-empty-definitions'?: Linter.RuleEntry<MarkdownNoEmptyDefinitions>;
|
|
1850
1850
|
/**
|
|
1851
1851
|
* Disallow empty images
|
|
1852
1852
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-empty-images.md
|
|
@@ -1892,6 +1892,11 @@ interface RuleOptions {
|
|
|
1892
1892
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reversed-media-syntax.md
|
|
1893
1893
|
*/
|
|
1894
1894
|
'markdown/no-reversed-media-syntax'?: Linter.RuleEntry<[]>;
|
|
1895
|
+
/**
|
|
1896
|
+
* Disallow unused definitions
|
|
1897
|
+
* @see https://github.com/eslint/markdown/blob/main/docs/rules/no-unused-definitions.md
|
|
1898
|
+
*/
|
|
1899
|
+
'markdown/no-unused-definitions'?: Linter.RuleEntry<MarkdownNoUnusedDefinitions>;
|
|
1895
1900
|
/**
|
|
1896
1901
|
* Require alternative text for images
|
|
1897
1902
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/require-alt-text.md
|
|
@@ -1901,7 +1906,7 @@ interface RuleOptions {
|
|
|
1901
1906
|
* Disallow data rows in a GitHub Flavored Markdown table from having more cells than the header row
|
|
1902
1907
|
* @see https://github.com/eslint/markdown/blob/main/docs/rules/table-column-count.md
|
|
1903
1908
|
*/
|
|
1904
|
-
'markdown/table-column-count'?: Linter.RuleEntry<
|
|
1909
|
+
'markdown/table-column-count'?: Linter.RuleEntry<MarkdownTableColumnCount>;
|
|
1905
1910
|
/**
|
|
1906
1911
|
* Enforce a maximum number of classes per file
|
|
1907
1912
|
* @see https://eslint.org/docs/latest/rules/max-classes-per-file
|
|
@@ -2064,7 +2069,7 @@ interface RuleOptions {
|
|
|
2064
2069
|
*/
|
|
2065
2070
|
'no-console'?: Linter.RuleEntry<NoConsole>;
|
|
2066
2071
|
/**
|
|
2067
|
-
* Disallow reassigning `const` variables
|
|
2072
|
+
* Disallow reassigning `const`, `using`, and `await using` variables
|
|
2068
2073
|
* @see https://eslint.org/docs/latest/rules/no-const-assign
|
|
2069
2074
|
*/
|
|
2070
2075
|
'no-const-assign'?: Linter.RuleEntry<[]>;
|
|
@@ -5950,670 +5955,690 @@ interface RuleOptions {
|
|
|
5950
5955
|
'unicode-bom'?: Linter.RuleEntry<UnicodeBom>;
|
|
5951
5956
|
/**
|
|
5952
5957
|
* Improve regexes by making them shorter, consistent, and safer.
|
|
5953
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5958
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/better-regex.md
|
|
5954
5959
|
*/
|
|
5955
5960
|
'unicorn/better-regex'?: Linter.RuleEntry<UnicornBetterRegex>;
|
|
5956
5961
|
/**
|
|
5957
5962
|
* Enforce a specific parameter name in catch clauses.
|
|
5958
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5963
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/catch-error-name.md
|
|
5959
5964
|
*/
|
|
5960
5965
|
'unicorn/catch-error-name'?: Linter.RuleEntry<UnicornCatchErrorName>;
|
|
5961
5966
|
/**
|
|
5962
5967
|
* Enforce consistent assertion style with `node:assert`.
|
|
5963
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5968
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-assert.md
|
|
5964
5969
|
*/
|
|
5965
5970
|
'unicorn/consistent-assert'?: Linter.RuleEntry<[]>;
|
|
5966
5971
|
/**
|
|
5967
5972
|
* Prefer passing `Date` directly to the constructor when cloning.
|
|
5968
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5973
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-date-clone.md
|
|
5969
5974
|
*/
|
|
5970
5975
|
'unicorn/consistent-date-clone'?: Linter.RuleEntry<[]>;
|
|
5971
5976
|
/**
|
|
5972
5977
|
* Use destructured variables over properties.
|
|
5973
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5978
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-destructuring.md
|
|
5974
5979
|
*/
|
|
5975
5980
|
'unicorn/consistent-destructuring'?: Linter.RuleEntry<[]>;
|
|
5976
5981
|
/**
|
|
5977
5982
|
* Prefer consistent types when spreading a ternary in an array literal.
|
|
5978
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5983
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-empty-array-spread.md
|
|
5979
5984
|
*/
|
|
5980
5985
|
'unicorn/consistent-empty-array-spread'?: Linter.RuleEntry<[]>;
|
|
5981
5986
|
/**
|
|
5982
5987
|
* Enforce consistent style for element existence checks with `indexOf()`, `lastIndexOf()`, `findIndex()`, and `findLastIndex()`.
|
|
5983
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5988
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-existence-index-check.md
|
|
5984
5989
|
*/
|
|
5985
5990
|
'unicorn/consistent-existence-index-check'?: Linter.RuleEntry<[]>;
|
|
5986
5991
|
/**
|
|
5987
5992
|
* Move function definitions to the highest possible scope.
|
|
5988
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5993
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/consistent-function-scoping.md
|
|
5989
5994
|
*/
|
|
5990
5995
|
'unicorn/consistent-function-scoping'?: Linter.RuleEntry<UnicornConsistentFunctionScoping>;
|
|
5991
5996
|
/**
|
|
5992
5997
|
* Enforce correct `Error` subclassing.
|
|
5993
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
5998
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/custom-error-definition.md
|
|
5994
5999
|
*/
|
|
5995
6000
|
'unicorn/custom-error-definition'?: Linter.RuleEntry<[]>;
|
|
5996
6001
|
/**
|
|
5997
6002
|
* Enforce no spaces between braces.
|
|
5998
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6003
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/empty-brace-spaces.md
|
|
5999
6004
|
*/
|
|
6000
6005
|
'unicorn/empty-brace-spaces'?: Linter.RuleEntry<[]>;
|
|
6001
6006
|
/**
|
|
6002
6007
|
* Enforce passing a `message` value when creating a built-in error.
|
|
6003
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6008
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/error-message.md
|
|
6004
6009
|
*/
|
|
6005
6010
|
'unicorn/error-message'?: Linter.RuleEntry<[]>;
|
|
6006
6011
|
/**
|
|
6007
6012
|
* Require escape sequences to use uppercase or lowercase values.
|
|
6008
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6013
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/escape-case.md
|
|
6009
6014
|
*/
|
|
6010
6015
|
'unicorn/escape-case'?: Linter.RuleEntry<UnicornEscapeCase>;
|
|
6011
6016
|
/**
|
|
6012
6017
|
* Add expiration conditions to TODO comments.
|
|
6013
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6018
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/expiring-todo-comments.md
|
|
6014
6019
|
*/
|
|
6015
6020
|
'unicorn/expiring-todo-comments'?: Linter.RuleEntry<UnicornExpiringTodoComments>;
|
|
6016
6021
|
/**
|
|
6017
6022
|
* Enforce explicitly comparing the `length` or `size` property of a value.
|
|
6018
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6023
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/explicit-length-check.md
|
|
6019
6024
|
*/
|
|
6020
6025
|
'unicorn/explicit-length-check'?: Linter.RuleEntry<UnicornExplicitLengthCheck>;
|
|
6021
6026
|
/**
|
|
6022
6027
|
* Enforce a case style for filenames.
|
|
6023
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6028
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/filename-case.md
|
|
6024
6029
|
*/
|
|
6025
6030
|
'unicorn/filename-case'?: Linter.RuleEntry<UnicornFilenameCase>;
|
|
6026
6031
|
/**
|
|
6027
6032
|
* Enforce specific import styles per module.
|
|
6028
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6033
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/import-style.md
|
|
6029
6034
|
*/
|
|
6030
6035
|
'unicorn/import-style'?: Linter.RuleEntry<UnicornImportStyle>;
|
|
6031
6036
|
/**
|
|
6032
6037
|
* Enforce the use of `new` for all builtins, except `String`, `Number`, `Boolean`, `Symbol` and `BigInt`.
|
|
6033
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6038
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/new-for-builtins.md
|
|
6034
6039
|
*/
|
|
6035
6040
|
'unicorn/new-for-builtins'?: Linter.RuleEntry<[]>;
|
|
6036
6041
|
/**
|
|
6037
6042
|
* Enforce specifying rules to disable in `eslint-disable` comments.
|
|
6038
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6043
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-abusive-eslint-disable.md
|
|
6039
6044
|
*/
|
|
6040
6045
|
'unicorn/no-abusive-eslint-disable'?: Linter.RuleEntry<[]>;
|
|
6041
6046
|
/**
|
|
6042
6047
|
* Disallow recursive access to `this` within getters and setters.
|
|
6043
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6048
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-accessor-recursion.md
|
|
6044
6049
|
*/
|
|
6045
6050
|
'unicorn/no-accessor-recursion'?: Linter.RuleEntry<[]>;
|
|
6046
6051
|
/**
|
|
6047
6052
|
* Disallow anonymous functions and classes as the default export.
|
|
6048
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6053
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-anonymous-default-export.md
|
|
6049
6054
|
*/
|
|
6050
6055
|
'unicorn/no-anonymous-default-export'?: Linter.RuleEntry<[]>;
|
|
6051
6056
|
/**
|
|
6052
6057
|
* Prevent passing a function reference directly to iterator methods.
|
|
6053
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6058
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-callback-reference.md
|
|
6054
6059
|
*/
|
|
6055
6060
|
'unicorn/no-array-callback-reference'?: Linter.RuleEntry<[]>;
|
|
6056
6061
|
/**
|
|
6057
6062
|
* Prefer `for…of` over the `forEach` method.
|
|
6058
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6063
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-for-each.md
|
|
6059
6064
|
*/
|
|
6060
6065
|
'unicorn/no-array-for-each'?: Linter.RuleEntry<[]>;
|
|
6061
6066
|
/**
|
|
6062
6067
|
* Disallow using the `this` argument in array methods.
|
|
6063
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6068
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-method-this-argument.md
|
|
6064
6069
|
*/
|
|
6065
6070
|
'unicorn/no-array-method-this-argument'?: Linter.RuleEntry<[]>;
|
|
6066
6071
|
/**
|
|
6067
6072
|
* Replaced by `unicorn/prefer-single-call` which covers more cases.
|
|
6068
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6073
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/deprecated-rules.md#no-array-push-push
|
|
6069
6074
|
* @deprecated
|
|
6070
6075
|
*/
|
|
6071
6076
|
'unicorn/no-array-push-push'?: Linter.RuleEntry<[]>;
|
|
6072
6077
|
/**
|
|
6073
6078
|
* Disallow `Array#reduce()` and `Array#reduceRight()`.
|
|
6074
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6079
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-reduce.md
|
|
6075
6080
|
*/
|
|
6076
6081
|
'unicorn/no-array-reduce'?: Linter.RuleEntry<UnicornNoArrayReduce>;
|
|
6082
|
+
/**
|
|
6083
|
+
* Prefer `Array#toReversed()` over `Array#reverse()`.
|
|
6084
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-array-reverse.md
|
|
6085
|
+
*/
|
|
6086
|
+
'unicorn/no-array-reverse'?: Linter.RuleEntry<UnicornNoArrayReverse>;
|
|
6077
6087
|
/**
|
|
6078
6088
|
* Disallow member access from await expression.
|
|
6079
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6089
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-await-expression-member.md
|
|
6080
6090
|
*/
|
|
6081
6091
|
'unicorn/no-await-expression-member'?: Linter.RuleEntry<[]>;
|
|
6082
6092
|
/**
|
|
6083
6093
|
* Disallow using `await` in `Promise` method parameters.
|
|
6084
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6094
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-await-in-promise-methods.md
|
|
6085
6095
|
*/
|
|
6086
6096
|
'unicorn/no-await-in-promise-methods'?: Linter.RuleEntry<[]>;
|
|
6087
6097
|
/**
|
|
6088
6098
|
* Do not use leading/trailing space between `console.log` parameters.
|
|
6089
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6099
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-console-spaces.md
|
|
6090
6100
|
*/
|
|
6091
6101
|
'unicorn/no-console-spaces'?: Linter.RuleEntry<[]>;
|
|
6092
6102
|
/**
|
|
6093
6103
|
* Do not use `document.cookie` directly.
|
|
6094
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6104
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-document-cookie.md
|
|
6095
6105
|
*/
|
|
6096
6106
|
'unicorn/no-document-cookie'?: Linter.RuleEntry<[]>;
|
|
6097
6107
|
/**
|
|
6098
6108
|
* Disallow empty files.
|
|
6099
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6109
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-empty-file.md
|
|
6100
6110
|
*/
|
|
6101
6111
|
'unicorn/no-empty-file'?: Linter.RuleEntry<[]>;
|
|
6102
6112
|
/**
|
|
6103
6113
|
* Do not use a `for` loop that can be replaced with a `for-of` loop.
|
|
6104
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6114
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-for-loop.md
|
|
6105
6115
|
*/
|
|
6106
6116
|
'unicorn/no-for-loop'?: Linter.RuleEntry<[]>;
|
|
6107
6117
|
/**
|
|
6108
6118
|
* Enforce the use of Unicode escapes instead of hexadecimal escapes.
|
|
6109
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6119
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-hex-escape.md
|
|
6110
6120
|
*/
|
|
6111
6121
|
'unicorn/no-hex-escape'?: Linter.RuleEntry<[]>;
|
|
6112
6122
|
/**
|
|
6113
6123
|
* Replaced by `unicorn/no-instanceof-builtins` which covers more cases.
|
|
6114
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6124
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/deprecated-rules.md#no-instanceof-array
|
|
6115
6125
|
* @deprecated
|
|
6116
6126
|
*/
|
|
6117
6127
|
'unicorn/no-instanceof-array'?: Linter.RuleEntry<[]>;
|
|
6118
6128
|
/**
|
|
6119
6129
|
* Disallow `instanceof` with built-in objects
|
|
6120
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6130
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-instanceof-builtins.md
|
|
6121
6131
|
*/
|
|
6122
6132
|
'unicorn/no-instanceof-builtins'?: Linter.RuleEntry<UnicornNoInstanceofBuiltins>;
|
|
6123
6133
|
/**
|
|
6124
6134
|
* Disallow invalid options in `fetch()` and `new Request()`.
|
|
6125
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6135
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-invalid-fetch-options.md
|
|
6126
6136
|
*/
|
|
6127
6137
|
'unicorn/no-invalid-fetch-options'?: Linter.RuleEntry<[]>;
|
|
6128
6138
|
/**
|
|
6129
6139
|
* Prevent calling `EventTarget#removeEventListener()` with the result of an expression.
|
|
6130
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6140
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-invalid-remove-event-listener.md
|
|
6131
6141
|
*/
|
|
6132
6142
|
'unicorn/no-invalid-remove-event-listener'?: Linter.RuleEntry<[]>;
|
|
6133
6143
|
/**
|
|
6134
6144
|
* Disallow identifiers starting with `new` or `class`.
|
|
6135
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6145
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-keyword-prefix.md
|
|
6136
6146
|
*/
|
|
6137
6147
|
'unicorn/no-keyword-prefix'?: Linter.RuleEntry<UnicornNoKeywordPrefix>;
|
|
6138
6148
|
/**
|
|
6139
6149
|
* Replaced by `unicorn/no-unnecessary-slice-end` which covers more cases.
|
|
6140
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6150
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/deprecated-rules.md#no-length-as-slice-end
|
|
6141
6151
|
* @deprecated
|
|
6142
6152
|
*/
|
|
6143
6153
|
'unicorn/no-length-as-slice-end'?: Linter.RuleEntry<[]>;
|
|
6144
6154
|
/**
|
|
6145
6155
|
* Disallow `if` statements as the only statement in `if` blocks without `else`.
|
|
6146
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6156
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-lonely-if.md
|
|
6147
6157
|
*/
|
|
6148
6158
|
'unicorn/no-lonely-if'?: Linter.RuleEntry<[]>;
|
|
6149
6159
|
/**
|
|
6150
6160
|
* Disallow a magic number as the `depth` argument in `Array#flat(…).`
|
|
6151
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6161
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-magic-array-flat-depth.md
|
|
6152
6162
|
*/
|
|
6153
6163
|
'unicorn/no-magic-array-flat-depth'?: Linter.RuleEntry<[]>;
|
|
6154
6164
|
/**
|
|
6155
6165
|
* Disallow named usage of default import and export.
|
|
6156
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6166
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-named-default.md
|
|
6157
6167
|
*/
|
|
6158
6168
|
'unicorn/no-named-default'?: Linter.RuleEntry<[]>;
|
|
6159
6169
|
/**
|
|
6160
6170
|
* Disallow negated conditions.
|
|
6161
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6171
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-negated-condition.md
|
|
6162
6172
|
*/
|
|
6163
6173
|
'unicorn/no-negated-condition'?: Linter.RuleEntry<[]>;
|
|
6164
6174
|
/**
|
|
6165
6175
|
* Disallow negated expression in equality check.
|
|
6166
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6176
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-negation-in-equality-check.md
|
|
6167
6177
|
*/
|
|
6168
6178
|
'unicorn/no-negation-in-equality-check'?: Linter.RuleEntry<[]>;
|
|
6169
6179
|
/**
|
|
6170
6180
|
* Disallow nested ternary expressions.
|
|
6171
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6181
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-nested-ternary.md
|
|
6172
6182
|
*/
|
|
6173
6183
|
'unicorn/no-nested-ternary'?: Linter.RuleEntry<[]>;
|
|
6174
6184
|
/**
|
|
6175
6185
|
* Disallow `new Array()`.
|
|
6176
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6186
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-new-array.md
|
|
6177
6187
|
*/
|
|
6178
6188
|
'unicorn/no-new-array'?: Linter.RuleEntry<[]>;
|
|
6179
6189
|
/**
|
|
6180
6190
|
* Enforce the use of `Buffer.from()` and `Buffer.alloc()` instead of the deprecated `new Buffer()`.
|
|
6181
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6191
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-new-buffer.md
|
|
6182
6192
|
*/
|
|
6183
6193
|
'unicorn/no-new-buffer'?: Linter.RuleEntry<[]>;
|
|
6184
6194
|
/**
|
|
6185
6195
|
* Disallow the use of the `null` literal.
|
|
6186
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6196
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-null.md
|
|
6187
6197
|
*/
|
|
6188
6198
|
'unicorn/no-null'?: Linter.RuleEntry<UnicornNoNull>;
|
|
6189
6199
|
/**
|
|
6190
6200
|
* Disallow the use of objects as default parameters.
|
|
6191
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6201
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-object-as-default-parameter.md
|
|
6192
6202
|
*/
|
|
6193
6203
|
'unicorn/no-object-as-default-parameter'?: Linter.RuleEntry<[]>;
|
|
6194
6204
|
/**
|
|
6195
6205
|
* Disallow `process.exit()`.
|
|
6196
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6206
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-process-exit.md
|
|
6197
6207
|
*/
|
|
6198
6208
|
'unicorn/no-process-exit'?: Linter.RuleEntry<[]>;
|
|
6199
6209
|
/**
|
|
6200
6210
|
* Disallow passing single-element arrays to `Promise` methods.
|
|
6201
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6211
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-single-promise-in-promise-methods.md
|
|
6202
6212
|
*/
|
|
6203
6213
|
'unicorn/no-single-promise-in-promise-methods'?: Linter.RuleEntry<[]>;
|
|
6204
6214
|
/**
|
|
6205
6215
|
* Disallow classes that only have static members.
|
|
6206
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6216
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-static-only-class.md
|
|
6207
6217
|
*/
|
|
6208
6218
|
'unicorn/no-static-only-class'?: Linter.RuleEntry<[]>;
|
|
6209
6219
|
/**
|
|
6210
6220
|
* Disallow `then` property.
|
|
6211
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6221
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-thenable.md
|
|
6212
6222
|
*/
|
|
6213
6223
|
'unicorn/no-thenable'?: Linter.RuleEntry<[]>;
|
|
6214
6224
|
/**
|
|
6215
6225
|
* Disallow assigning `this` to a variable.
|
|
6216
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6226
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-this-assignment.md
|
|
6217
6227
|
*/
|
|
6218
6228
|
'unicorn/no-this-assignment'?: Linter.RuleEntry<[]>;
|
|
6219
6229
|
/**
|
|
6220
6230
|
* Disallow comparing `undefined` using `typeof`.
|
|
6221
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6231
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-typeof-undefined.md
|
|
6222
6232
|
*/
|
|
6223
6233
|
'unicorn/no-typeof-undefined'?: Linter.RuleEntry<UnicornNoTypeofUndefined>;
|
|
6224
6234
|
/**
|
|
6225
6235
|
* Disallow using `1` as the `depth` argument of `Array#flat()`.
|
|
6226
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6236
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-array-flat-depth.md
|
|
6227
6237
|
*/
|
|
6228
6238
|
'unicorn/no-unnecessary-array-flat-depth'?: Linter.RuleEntry<[]>;
|
|
6229
6239
|
/**
|
|
6230
6240
|
* Disallow using `.length` or `Infinity` as the `deleteCount` or `skipCount` argument of `Array#{splice,toSpliced}()`.
|
|
6231
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6241
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-array-splice-count.md
|
|
6232
6242
|
*/
|
|
6233
6243
|
'unicorn/no-unnecessary-array-splice-count'?: Linter.RuleEntry<[]>;
|
|
6234
6244
|
/**
|
|
6235
6245
|
* Disallow awaiting non-promise values.
|
|
6236
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6246
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-await.md
|
|
6237
6247
|
*/
|
|
6238
6248
|
'unicorn/no-unnecessary-await'?: Linter.RuleEntry<[]>;
|
|
6239
6249
|
/**
|
|
6240
6250
|
* Enforce the use of built-in methods instead of unnecessary polyfills.
|
|
6241
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6251
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-polyfills.md
|
|
6242
6252
|
*/
|
|
6243
6253
|
'unicorn/no-unnecessary-polyfills'?: Linter.RuleEntry<UnicornNoUnnecessaryPolyfills>;
|
|
6244
6254
|
/**
|
|
6245
6255
|
* Disallow using `.length` or `Infinity` as the `end` argument of `{Array,String,TypedArray}#slice()`.
|
|
6246
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6256
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unnecessary-slice-end.md
|
|
6247
6257
|
*/
|
|
6248
6258
|
'unicorn/no-unnecessary-slice-end'?: Linter.RuleEntry<[]>;
|
|
6249
6259
|
/**
|
|
6250
6260
|
* Disallow unreadable array destructuring.
|
|
6251
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6261
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unreadable-array-destructuring.md
|
|
6252
6262
|
*/
|
|
6253
6263
|
'unicorn/no-unreadable-array-destructuring'?: Linter.RuleEntry<[]>;
|
|
6254
6264
|
/**
|
|
6255
6265
|
* Disallow unreadable IIFEs.
|
|
6256
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6266
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unreadable-iife.md
|
|
6257
6267
|
*/
|
|
6258
6268
|
'unicorn/no-unreadable-iife'?: Linter.RuleEntry<[]>;
|
|
6259
6269
|
/**
|
|
6260
6270
|
* Disallow unused object properties.
|
|
6261
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6271
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-unused-properties.md
|
|
6262
6272
|
*/
|
|
6263
6273
|
'unicorn/no-unused-properties'?: Linter.RuleEntry<[]>;
|
|
6274
|
+
/**
|
|
6275
|
+
* Disallow unnecessary `Error.captureStackTrace(…)`.
|
|
6276
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-error-capture-stack-trace.md
|
|
6277
|
+
*/
|
|
6278
|
+
'unicorn/no-useless-error-capture-stack-trace'?: Linter.RuleEntry<[]>;
|
|
6264
6279
|
/**
|
|
6265
6280
|
* Disallow useless fallback when spreading in object literals.
|
|
6266
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6281
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-fallback-in-spread.md
|
|
6267
6282
|
*/
|
|
6268
6283
|
'unicorn/no-useless-fallback-in-spread'?: Linter.RuleEntry<[]>;
|
|
6269
6284
|
/**
|
|
6270
6285
|
* Disallow useless array length check.
|
|
6271
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6286
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-length-check.md
|
|
6272
6287
|
*/
|
|
6273
6288
|
'unicorn/no-useless-length-check'?: Linter.RuleEntry<[]>;
|
|
6274
6289
|
/**
|
|
6275
6290
|
* Disallow returning/yielding `Promise.resolve/reject()` in async functions or promise callbacks
|
|
6276
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6291
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-promise-resolve-reject.md
|
|
6277
6292
|
*/
|
|
6278
6293
|
'unicorn/no-useless-promise-resolve-reject'?: Linter.RuleEntry<[]>;
|
|
6279
6294
|
/**
|
|
6280
6295
|
* Disallow unnecessary spread.
|
|
6281
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6296
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-spread.md
|
|
6282
6297
|
*/
|
|
6283
6298
|
'unicorn/no-useless-spread'?: Linter.RuleEntry<[]>;
|
|
6284
6299
|
/**
|
|
6285
6300
|
* Disallow useless case in switch statements.
|
|
6286
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6301
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-switch-case.md
|
|
6287
6302
|
*/
|
|
6288
6303
|
'unicorn/no-useless-switch-case'?: Linter.RuleEntry<[]>;
|
|
6289
6304
|
/**
|
|
6290
6305
|
* Disallow useless `undefined`.
|
|
6291
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6306
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-useless-undefined.md
|
|
6292
6307
|
*/
|
|
6293
6308
|
'unicorn/no-useless-undefined'?: Linter.RuleEntry<UnicornNoUselessUndefined>;
|
|
6294
6309
|
/**
|
|
6295
6310
|
* Disallow number literals with zero fractions or dangling dots.
|
|
6296
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6311
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/no-zero-fractions.md
|
|
6297
6312
|
*/
|
|
6298
6313
|
'unicorn/no-zero-fractions'?: Linter.RuleEntry<[]>;
|
|
6299
6314
|
/**
|
|
6300
6315
|
* Enforce proper case for numeric literals.
|
|
6301
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6316
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/number-literal-case.md
|
|
6302
6317
|
*/
|
|
6303
6318
|
'unicorn/number-literal-case'?: Linter.RuleEntry<UnicornNumberLiteralCase>;
|
|
6304
6319
|
/**
|
|
6305
6320
|
* Enforce the style of numeric separators by correctly grouping digits.
|
|
6306
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6321
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/numeric-separators-style.md
|
|
6307
6322
|
*/
|
|
6308
6323
|
'unicorn/numeric-separators-style'?: Linter.RuleEntry<UnicornNumericSeparatorsStyle>;
|
|
6309
6324
|
/**
|
|
6310
6325
|
* Prefer `.addEventListener()` and `.removeEventListener()` over `on`-functions.
|
|
6311
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6326
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-add-event-listener.md
|
|
6312
6327
|
*/
|
|
6313
6328
|
'unicorn/prefer-add-event-listener'?: Linter.RuleEntry<UnicornPreferAddEventListener>;
|
|
6314
6329
|
/**
|
|
6315
6330
|
* Prefer `.find(…)` and `.findLast(…)` over the first or last element from `.filter(…)`.
|
|
6316
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6331
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-find.md
|
|
6317
6332
|
*/
|
|
6318
6333
|
'unicorn/prefer-array-find'?: Linter.RuleEntry<UnicornPreferArrayFind>;
|
|
6319
6334
|
/**
|
|
6320
6335
|
* Prefer `Array#flat()` over legacy techniques to flatten arrays.
|
|
6321
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6336
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-flat.md
|
|
6322
6337
|
*/
|
|
6323
6338
|
'unicorn/prefer-array-flat'?: Linter.RuleEntry<UnicornPreferArrayFlat>;
|
|
6324
6339
|
/**
|
|
6325
6340
|
* Prefer `.flatMap(…)` over `.map(…).flat()`.
|
|
6326
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6341
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-flat-map.md
|
|
6327
6342
|
*/
|
|
6328
6343
|
'unicorn/prefer-array-flat-map'?: Linter.RuleEntry<[]>;
|
|
6329
6344
|
/**
|
|
6330
6345
|
* Prefer `Array#{indexOf,lastIndexOf}()` over `Array#{findIndex,findLastIndex}()` when looking for the index of an item.
|
|
6331
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6346
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-index-of.md
|
|
6332
6347
|
*/
|
|
6333
6348
|
'unicorn/prefer-array-index-of'?: Linter.RuleEntry<[]>;
|
|
6334
6349
|
/**
|
|
6335
6350
|
* Prefer `.some(…)` over `.filter(…).length` check and `.{find,findLast,findIndex,findLastIndex}(…)`.
|
|
6336
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6351
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-array-some.md
|
|
6337
6352
|
*/
|
|
6338
6353
|
'unicorn/prefer-array-some'?: Linter.RuleEntry<[]>;
|
|
6339
6354
|
/**
|
|
6340
6355
|
* Prefer `.at()` method for index access and `String#charAt()`.
|
|
6341
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6356
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-at.md
|
|
6342
6357
|
*/
|
|
6343
6358
|
'unicorn/prefer-at'?: Linter.RuleEntry<UnicornPreferAt>;
|
|
6344
6359
|
/**
|
|
6345
6360
|
* Prefer `Blob#arrayBuffer()` over `FileReader#readAsArrayBuffer(…)` and `Blob#text()` over `FileReader#readAsText(…)`.
|
|
6346
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6361
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-blob-reading-methods.md
|
|
6347
6362
|
*/
|
|
6348
6363
|
'unicorn/prefer-blob-reading-methods'?: Linter.RuleEntry<[]>;
|
|
6364
|
+
/**
|
|
6365
|
+
* Prefer class field declarations over `this` assignments in constructors.
|
|
6366
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-class-fields.md
|
|
6367
|
+
*/
|
|
6368
|
+
'unicorn/prefer-class-fields'?: Linter.RuleEntry<[]>;
|
|
6349
6369
|
/**
|
|
6350
6370
|
* Prefer `String#codePointAt(…)` over `String#charCodeAt(…)` and `String.fromCodePoint(…)` over `String.fromCharCode(…)`.
|
|
6351
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6371
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-code-point.md
|
|
6352
6372
|
*/
|
|
6353
6373
|
'unicorn/prefer-code-point'?: Linter.RuleEntry<[]>;
|
|
6354
6374
|
/**
|
|
6355
6375
|
* Prefer `Date.now()` to get the number of milliseconds since the Unix Epoch.
|
|
6356
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6376
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-date-now.md
|
|
6357
6377
|
*/
|
|
6358
6378
|
'unicorn/prefer-date-now'?: Linter.RuleEntry<[]>;
|
|
6359
6379
|
/**
|
|
6360
6380
|
* Prefer default parameters over reassignment.
|
|
6361
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6381
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-default-parameters.md
|
|
6362
6382
|
*/
|
|
6363
6383
|
'unicorn/prefer-default-parameters'?: Linter.RuleEntry<[]>;
|
|
6364
6384
|
/**
|
|
6365
6385
|
* Prefer `Node#append()` over `Node#appendChild()`.
|
|
6366
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6386
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-dom-node-append.md
|
|
6367
6387
|
*/
|
|
6368
6388
|
'unicorn/prefer-dom-node-append'?: Linter.RuleEntry<[]>;
|
|
6369
6389
|
/**
|
|
6370
6390
|
* Prefer using `.dataset` on DOM elements over calling attribute methods.
|
|
6371
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6391
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-dom-node-dataset.md
|
|
6372
6392
|
*/
|
|
6373
6393
|
'unicorn/prefer-dom-node-dataset'?: Linter.RuleEntry<[]>;
|
|
6374
6394
|
/**
|
|
6375
6395
|
* Prefer `childNode.remove()` over `parentNode.removeChild(childNode)`.
|
|
6376
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6396
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-dom-node-remove.md
|
|
6377
6397
|
*/
|
|
6378
6398
|
'unicorn/prefer-dom-node-remove'?: Linter.RuleEntry<[]>;
|
|
6379
6399
|
/**
|
|
6380
6400
|
* Prefer `.textContent` over `.innerText`.
|
|
6381
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6401
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-dom-node-text-content.md
|
|
6382
6402
|
*/
|
|
6383
6403
|
'unicorn/prefer-dom-node-text-content'?: Linter.RuleEntry<[]>;
|
|
6384
6404
|
/**
|
|
6385
6405
|
* Prefer `EventTarget` over `EventEmitter`.
|
|
6386
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6406
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-event-target.md
|
|
6387
6407
|
*/
|
|
6388
6408
|
'unicorn/prefer-event-target'?: Linter.RuleEntry<[]>;
|
|
6389
6409
|
/**
|
|
6390
6410
|
* Prefer `export…from` when re-exporting.
|
|
6391
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6411
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-export-from.md
|
|
6392
6412
|
*/
|
|
6393
6413
|
'unicorn/prefer-export-from'?: Linter.RuleEntry<UnicornPreferExportFrom>;
|
|
6394
6414
|
/**
|
|
6395
6415
|
* Prefer `globalThis` over `window`, `self`, and `global`.
|
|
6396
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6416
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-global-this.md
|
|
6397
6417
|
*/
|
|
6398
6418
|
'unicorn/prefer-global-this'?: Linter.RuleEntry<[]>;
|
|
6399
6419
|
/**
|
|
6400
6420
|
* Prefer `import.meta.{dirname,filename}` over legacy techniques for getting file paths.
|
|
6401
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6421
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-import-meta-properties.md
|
|
6402
6422
|
*/
|
|
6403
6423
|
'unicorn/prefer-import-meta-properties'?: Linter.RuleEntry<[]>;
|
|
6404
6424
|
/**
|
|
6405
6425
|
* Prefer `.includes()` over `.indexOf()`, `.lastIndexOf()`, and `Array#some()` when checking for existence or non-existence.
|
|
6406
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6426
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-includes.md
|
|
6407
6427
|
*/
|
|
6408
6428
|
'unicorn/prefer-includes'?: Linter.RuleEntry<[]>;
|
|
6409
6429
|
/**
|
|
6410
6430
|
* Prefer reading a JSON file as a buffer.
|
|
6411
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6431
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-json-parse-buffer.md
|
|
6412
6432
|
*/
|
|
6413
6433
|
'unicorn/prefer-json-parse-buffer'?: Linter.RuleEntry<[]>;
|
|
6414
6434
|
/**
|
|
6415
6435
|
* Prefer `KeyboardEvent#key` over `KeyboardEvent#keyCode`.
|
|
6416
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6436
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-keyboard-event-key.md
|
|
6417
6437
|
*/
|
|
6418
6438
|
'unicorn/prefer-keyboard-event-key'?: Linter.RuleEntry<[]>;
|
|
6419
6439
|
/**
|
|
6420
6440
|
* Prefer using a logical operator over a ternary.
|
|
6421
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6441
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-logical-operator-over-ternary.md
|
|
6422
6442
|
*/
|
|
6423
6443
|
'unicorn/prefer-logical-operator-over-ternary'?: Linter.RuleEntry<[]>;
|
|
6424
6444
|
/**
|
|
6425
6445
|
* Prefer `Math.min()` and `Math.max()` over ternaries for simple comparisons.
|
|
6426
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6446
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-math-min-max.md
|
|
6427
6447
|
*/
|
|
6428
6448
|
'unicorn/prefer-math-min-max'?: Linter.RuleEntry<[]>;
|
|
6429
6449
|
/**
|
|
6430
6450
|
* Enforce the use of `Math.trunc` instead of bitwise operators.
|
|
6431
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6451
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-math-trunc.md
|
|
6432
6452
|
*/
|
|
6433
6453
|
'unicorn/prefer-math-trunc'?: Linter.RuleEntry<[]>;
|
|
6434
6454
|
/**
|
|
6435
6455
|
* Prefer `.before()` over `.insertBefore()`, `.replaceWith()` over `.replaceChild()`, prefer one of `.before()`, `.after()`, `.append()` or `.prepend()` over `insertAdjacentText()` and `insertAdjacentElement()`.
|
|
6436
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6456
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-modern-dom-apis.md
|
|
6437
6457
|
*/
|
|
6438
6458
|
'unicorn/prefer-modern-dom-apis'?: Linter.RuleEntry<[]>;
|
|
6439
6459
|
/**
|
|
6440
6460
|
* Prefer modern `Math` APIs over legacy patterns.
|
|
6441
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6461
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-modern-math-apis.md
|
|
6442
6462
|
*/
|
|
6443
6463
|
'unicorn/prefer-modern-math-apis'?: Linter.RuleEntry<[]>;
|
|
6444
6464
|
/**
|
|
6445
6465
|
* Prefer JavaScript modules (ESM) over CommonJS.
|
|
6446
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6466
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-module.md
|
|
6447
6467
|
*/
|
|
6448
6468
|
'unicorn/prefer-module'?: Linter.RuleEntry<[]>;
|
|
6449
6469
|
/**
|
|
6450
6470
|
* Prefer using `String`, `Number`, `BigInt`, `Boolean`, and `Symbol` directly.
|
|
6451
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6471
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-native-coercion-functions.md
|
|
6452
6472
|
*/
|
|
6453
6473
|
'unicorn/prefer-native-coercion-functions'?: Linter.RuleEntry<[]>;
|
|
6454
6474
|
/**
|
|
6455
6475
|
* Prefer negative index over `.length - index` when possible.
|
|
6456
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6476
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-negative-index.md
|
|
6457
6477
|
*/
|
|
6458
6478
|
'unicorn/prefer-negative-index'?: Linter.RuleEntry<[]>;
|
|
6459
6479
|
/**
|
|
6460
6480
|
* Prefer using the `node:` protocol when importing Node.js builtin modules.
|
|
6461
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6481
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-node-protocol.md
|
|
6462
6482
|
*/
|
|
6463
6483
|
'unicorn/prefer-node-protocol'?: Linter.RuleEntry<[]>;
|
|
6464
6484
|
/**
|
|
6465
6485
|
* Prefer `Number` static properties over global ones.
|
|
6466
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6486
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-number-properties.md
|
|
6467
6487
|
*/
|
|
6468
6488
|
'unicorn/prefer-number-properties'?: Linter.RuleEntry<UnicornPreferNumberProperties>;
|
|
6469
6489
|
/**
|
|
6470
6490
|
* Prefer using `Object.fromEntries(…)` to transform a list of key-value pairs into an object.
|
|
6471
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6491
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-object-from-entries.md
|
|
6472
6492
|
*/
|
|
6473
6493
|
'unicorn/prefer-object-from-entries'?: Linter.RuleEntry<UnicornPreferObjectFromEntries>;
|
|
6474
6494
|
/**
|
|
6475
6495
|
* Prefer omitting the `catch` binding parameter.
|
|
6476
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6496
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-optional-catch-binding.md
|
|
6477
6497
|
*/
|
|
6478
6498
|
'unicorn/prefer-optional-catch-binding'?: Linter.RuleEntry<[]>;
|
|
6479
6499
|
/**
|
|
6480
6500
|
* Prefer borrowing methods from the prototype instead of the instance.
|
|
6481
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6501
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-prototype-methods.md
|
|
6482
6502
|
*/
|
|
6483
6503
|
'unicorn/prefer-prototype-methods'?: Linter.RuleEntry<[]>;
|
|
6484
6504
|
/**
|
|
6485
6505
|
* Prefer `.querySelector()` over `.getElementById()`, `.querySelectorAll()` over `.getElementsByClassName()` and `.getElementsByTagName()` and `.getElementsByName()`.
|
|
6486
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6506
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-query-selector.md
|
|
6487
6507
|
*/
|
|
6488
6508
|
'unicorn/prefer-query-selector'?: Linter.RuleEntry<[]>;
|
|
6489
6509
|
/**
|
|
6490
6510
|
* Prefer `Reflect.apply()` over `Function#apply()`.
|
|
6491
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6511
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-reflect-apply.md
|
|
6492
6512
|
*/
|
|
6493
6513
|
'unicorn/prefer-reflect-apply'?: Linter.RuleEntry<[]>;
|
|
6494
6514
|
/**
|
|
6495
6515
|
* Prefer `RegExp#test()` over `String#match()` and `RegExp#exec()`.
|
|
6496
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6516
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-regexp-test.md
|
|
6497
6517
|
*/
|
|
6498
6518
|
'unicorn/prefer-regexp-test'?: Linter.RuleEntry<[]>;
|
|
6499
6519
|
/**
|
|
6500
6520
|
* Prefer `Set#has()` over `Array#includes()` when checking for existence or non-existence.
|
|
6501
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6521
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-set-has.md
|
|
6502
6522
|
*/
|
|
6503
6523
|
'unicorn/prefer-set-has'?: Linter.RuleEntry<[]>;
|
|
6504
6524
|
/**
|
|
6505
6525
|
* Prefer using `Set#size` instead of `Array#length`.
|
|
6506
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6526
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-set-size.md
|
|
6507
6527
|
*/
|
|
6508
6528
|
'unicorn/prefer-set-size'?: Linter.RuleEntry<[]>;
|
|
6509
6529
|
/**
|
|
6510
6530
|
* Enforce combining multiple `Array#push()`, `Element#classList.{add,remove}()`, and `importScripts()` into one call.
|
|
6511
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6531
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-single-call.md
|
|
6512
6532
|
*/
|
|
6513
6533
|
'unicorn/prefer-single-call'?: Linter.RuleEntry<UnicornPreferSingleCall>;
|
|
6514
6534
|
/**
|
|
6515
6535
|
* Prefer the spread operator over `Array.from(…)`, `Array#concat(…)`, `Array#{slice,toSpliced}()` and `String#split('')`.
|
|
6516
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6536
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-spread.md
|
|
6517
6537
|
*/
|
|
6518
6538
|
'unicorn/prefer-spread'?: Linter.RuleEntry<[]>;
|
|
6519
6539
|
/**
|
|
6520
6540
|
* Prefer using the `String.raw` tag to avoid escaping `\`.
|
|
6521
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6541
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-raw.md
|
|
6522
6542
|
*/
|
|
6523
6543
|
'unicorn/prefer-string-raw'?: Linter.RuleEntry<[]>;
|
|
6524
6544
|
/**
|
|
6525
6545
|
* Prefer `String#replaceAll()` over regex searches with the global flag.
|
|
6526
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6546
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-replace-all.md
|
|
6527
6547
|
*/
|
|
6528
6548
|
'unicorn/prefer-string-replace-all'?: Linter.RuleEntry<[]>;
|
|
6529
6549
|
/**
|
|
6530
6550
|
* Prefer `String#slice()` over `String#substr()` and `String#substring()`.
|
|
6531
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6551
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-slice.md
|
|
6532
6552
|
*/
|
|
6533
6553
|
'unicorn/prefer-string-slice'?: Linter.RuleEntry<[]>;
|
|
6534
6554
|
/**
|
|
6535
6555
|
* Prefer `String#startsWith()` & `String#endsWith()` over `RegExp#test()`.
|
|
6536
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6556
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-starts-ends-with.md
|
|
6537
6557
|
*/
|
|
6538
6558
|
'unicorn/prefer-string-starts-ends-with'?: Linter.RuleEntry<[]>;
|
|
6539
6559
|
/**
|
|
6540
6560
|
* Prefer `String#trimStart()` / `String#trimEnd()` over `String#trimLeft()` / `String#trimRight()`.
|
|
6541
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6561
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-string-trim-start-end.md
|
|
6542
6562
|
*/
|
|
6543
6563
|
'unicorn/prefer-string-trim-start-end'?: Linter.RuleEntry<[]>;
|
|
6544
6564
|
/**
|
|
6545
6565
|
* Prefer using `structuredClone` to create a deep clone.
|
|
6546
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6566
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-structured-clone.md
|
|
6547
6567
|
*/
|
|
6548
6568
|
'unicorn/prefer-structured-clone'?: Linter.RuleEntry<UnicornPreferStructuredClone>;
|
|
6549
6569
|
/**
|
|
6550
6570
|
* Prefer `switch` over multiple `else-if`.
|
|
6551
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6571
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-switch.md
|
|
6552
6572
|
*/
|
|
6553
6573
|
'unicorn/prefer-switch'?: Linter.RuleEntry<UnicornPreferSwitch>;
|
|
6554
6574
|
/**
|
|
6555
6575
|
* Prefer ternary expressions over simple `if-else` statements.
|
|
6556
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6576
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-ternary.md
|
|
6557
6577
|
*/
|
|
6558
6578
|
'unicorn/prefer-ternary'?: Linter.RuleEntry<UnicornPreferTernary>;
|
|
6559
6579
|
/**
|
|
6560
6580
|
* Prefer top-level await over top-level promises and async function calls.
|
|
6561
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6581
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-top-level-await.md
|
|
6562
6582
|
*/
|
|
6563
6583
|
'unicorn/prefer-top-level-await'?: Linter.RuleEntry<[]>;
|
|
6564
6584
|
/**
|
|
6565
6585
|
* Enforce throwing `TypeError` in type checking conditions.
|
|
6566
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6586
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prefer-type-error.md
|
|
6567
6587
|
*/
|
|
6568
6588
|
'unicorn/prefer-type-error'?: Linter.RuleEntry<[]>;
|
|
6569
6589
|
/**
|
|
6570
6590
|
* Prevent abbreviations.
|
|
6571
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6591
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/prevent-abbreviations.md
|
|
6572
6592
|
*/
|
|
6573
6593
|
'unicorn/prevent-abbreviations'?: Linter.RuleEntry<UnicornPreventAbbreviations>;
|
|
6574
6594
|
/**
|
|
6575
6595
|
* Enforce consistent relative URL style.
|
|
6576
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6596
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/relative-url-style.md
|
|
6577
6597
|
*/
|
|
6578
6598
|
'unicorn/relative-url-style'?: Linter.RuleEntry<UnicornRelativeUrlStyle>;
|
|
6579
6599
|
/**
|
|
6580
6600
|
* Enforce using the separator argument with `Array#join()`.
|
|
6581
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6601
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/require-array-join-separator.md
|
|
6582
6602
|
*/
|
|
6583
6603
|
'unicorn/require-array-join-separator'?: Linter.RuleEntry<[]>;
|
|
6604
|
+
/**
|
|
6605
|
+
* Require non-empty specifier list in import and export statements.
|
|
6606
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/require-module-specifiers.md
|
|
6607
|
+
*/
|
|
6608
|
+
'unicorn/require-module-specifiers'?: Linter.RuleEntry<[]>;
|
|
6584
6609
|
/**
|
|
6585
6610
|
* Enforce using the digits argument with `Number#toFixed()`.
|
|
6586
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6611
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/require-number-to-fixed-digits-argument.md
|
|
6587
6612
|
*/
|
|
6588
6613
|
'unicorn/require-number-to-fixed-digits-argument'?: Linter.RuleEntry<[]>;
|
|
6589
6614
|
/**
|
|
6590
6615
|
* Enforce using the `targetOrigin` argument with `window.postMessage()`.
|
|
6591
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6616
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/require-post-message-target-origin.md
|
|
6592
6617
|
*/
|
|
6593
6618
|
'unicorn/require-post-message-target-origin'?: Linter.RuleEntry<[]>;
|
|
6594
6619
|
/**
|
|
6595
6620
|
* Enforce better string content.
|
|
6596
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6621
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/string-content.md
|
|
6597
6622
|
*/
|
|
6598
6623
|
'unicorn/string-content'?: Linter.RuleEntry<UnicornStringContent>;
|
|
6599
6624
|
/**
|
|
6600
6625
|
* Enforce consistent brace style for `case` clauses.
|
|
6601
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6626
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/switch-case-braces.md
|
|
6602
6627
|
*/
|
|
6603
6628
|
'unicorn/switch-case-braces'?: Linter.RuleEntry<UnicornSwitchCaseBraces>;
|
|
6604
6629
|
/**
|
|
6605
6630
|
* Fix whitespace-insensitive template indentation.
|
|
6606
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6631
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/template-indent.md
|
|
6607
6632
|
*/
|
|
6608
6633
|
'unicorn/template-indent'?: Linter.RuleEntry<UnicornTemplateIndent>;
|
|
6609
6634
|
/**
|
|
6610
6635
|
* Enforce consistent case for text encoding identifiers.
|
|
6611
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6636
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/text-encoding-identifier-case.md
|
|
6612
6637
|
*/
|
|
6613
6638
|
'unicorn/text-encoding-identifier-case'?: Linter.RuleEntry<[]>;
|
|
6614
6639
|
/**
|
|
6615
6640
|
* Require `new` when creating an error.
|
|
6616
|
-
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/
|
|
6641
|
+
* @see https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v60.0.0/docs/rules/throw-new-error.md
|
|
6617
6642
|
*/
|
|
6618
6643
|
'unicorn/throw-new-error'?: Linter.RuleEntry<[]>;
|
|
6619
6644
|
/**
|
|
@@ -7267,7 +7292,7 @@ interface RuleOptions {
|
|
|
7267
7292
|
*/
|
|
7268
7293
|
'vue/no-restricted-custom-event'?: Linter.RuleEntry<VueNoRestrictedCustomEvent>;
|
|
7269
7294
|
/**
|
|
7270
|
-
* disallow specific
|
|
7295
|
+
* disallow specific elements
|
|
7271
7296
|
* @see https://eslint.vuejs.org/rules/no-restricted-html-elements.html
|
|
7272
7297
|
*/
|
|
7273
7298
|
'vue/no-restricted-html-elements'?: Linter.RuleEntry<VueNoRestrictedHtmlElements>;
|
|
@@ -8061,6 +8086,7 @@ type AccessorPairs = [] | [{
|
|
|
8061
8086
|
getWithoutSet?: boolean;
|
|
8062
8087
|
setWithoutGet?: boolean;
|
|
8063
8088
|
enforceForClassMembers?: boolean;
|
|
8089
|
+
enforceForTSTypes?: boolean;
|
|
8064
8090
|
}];
|
|
8065
8091
|
// ----- antfu/consistent-chaining -----
|
|
8066
8092
|
type AntfuConsistentChaining = [] | [{
|
|
@@ -8326,7 +8352,9 @@ type GetterReturn = [] | [{
|
|
|
8326
8352
|
allowImplicit?: boolean;
|
|
8327
8353
|
}];
|
|
8328
8354
|
// ----- grouped-accessor-pairs -----
|
|
8329
|
-
type GroupedAccessorPairs = [] | [("anyOrder" | "getBeforeSet" | "setBeforeGet")]
|
|
8355
|
+
type GroupedAccessorPairs = [] | [("anyOrder" | "getBeforeSet" | "setBeforeGet")] | [("anyOrder" | "getBeforeSet" | "setBeforeGet"), {
|
|
8356
|
+
enforceForTSTypes?: boolean;
|
|
8357
|
+
}];
|
|
8330
8358
|
// ----- handle-callback-err -----
|
|
8331
8359
|
type HandleCallbackErr = [] | [string];
|
|
8332
8360
|
// ----- id-blacklist -----
|
|
@@ -8580,8 +8608,8 @@ type JsdocMatchName = [] | [{
|
|
|
8580
8608
|
context?: string;
|
|
8581
8609
|
disallowName?: string;
|
|
8582
8610
|
message?: string;
|
|
8611
|
+
replacement?: string;
|
|
8583
8612
|
tags?: string[];
|
|
8584
|
-
[k: string]: unknown | undefined;
|
|
8585
8613
|
}[];
|
|
8586
8614
|
}];
|
|
8587
8615
|
// ----- jsdoc/multiline-blocks -----
|
|
@@ -8655,7 +8683,6 @@ type JsdocRequireAsteriskPrefix = [] | [("always" | "never" | "any")] | [("alway
|
|
|
8655
8683
|
always?: string[];
|
|
8656
8684
|
any?: string[];
|
|
8657
8685
|
never?: string[];
|
|
8658
|
-
[k: string]: unknown | undefined;
|
|
8659
8686
|
};
|
|
8660
8687
|
}];
|
|
8661
8688
|
// ----- jsdoc/require-description -----
|
|
@@ -8865,7 +8892,6 @@ type JsdocSortTags = [] | [{
|
|
|
8865
8892
|
reportTagGroupSpacing?: boolean;
|
|
8866
8893
|
tagSequence?: {
|
|
8867
8894
|
tags?: string[];
|
|
8868
|
-
[k: string]: unknown | undefined;
|
|
8869
8895
|
}[];
|
|
8870
8896
|
}];
|
|
8871
8897
|
// ----- jsdoc/tag-lines -----
|
|
@@ -9555,6 +9581,12 @@ type MarkdownNoDuplicateDefinitions = [] | [{
|
|
|
9555
9581
|
type MarkdownNoDuplicateHeadings = [] | [{
|
|
9556
9582
|
checkSiblingsOnly?: boolean;
|
|
9557
9583
|
}];
|
|
9584
|
+
// ----- markdown/no-empty-definitions -----
|
|
9585
|
+
type MarkdownNoEmptyDefinitions = [] | [{
|
|
9586
|
+
allowDefinitions?: string[];
|
|
9587
|
+
allowFootnoteDefinitions?: string[];
|
|
9588
|
+
checkFootnoteDefinitions?: boolean;
|
|
9589
|
+
}];
|
|
9558
9590
|
// ----- markdown/no-html -----
|
|
9559
9591
|
type MarkdownNoHtml = [] | [{
|
|
9560
9592
|
allowed?: string[];
|
|
@@ -9568,6 +9600,15 @@ type MarkdownNoMissingLinkFragments = [] | [{
|
|
|
9568
9600
|
type MarkdownNoMultipleH1 = [] | [{
|
|
9569
9601
|
frontmatterTitle?: string;
|
|
9570
9602
|
}];
|
|
9603
|
+
// ----- markdown/no-unused-definitions -----
|
|
9604
|
+
type MarkdownNoUnusedDefinitions = [] | [{
|
|
9605
|
+
allowDefinitions?: string[];
|
|
9606
|
+
allowFootnoteDefinitions?: string[];
|
|
9607
|
+
}];
|
|
9608
|
+
// ----- markdown/table-column-count -----
|
|
9609
|
+
type MarkdownTableColumnCount = [] | [{
|
|
9610
|
+
checkMissingCells?: boolean;
|
|
9611
|
+
}];
|
|
9571
9612
|
// ----- max-classes-per-file -----
|
|
9572
9613
|
type MaxClassesPerFile = [] | [(number | {
|
|
9573
9614
|
ignoreExpressions?: boolean;
|
|
@@ -10045,6 +10086,7 @@ type NoUnusedVars = [] | [(("all" | "local") | {
|
|
|
10045
10086
|
caughtErrorsIgnorePattern?: string;
|
|
10046
10087
|
destructuredArrayIgnorePattern?: string;
|
|
10047
10088
|
ignoreClassWithStaticInitBlock?: boolean;
|
|
10089
|
+
ignoreUsingDeclarations?: boolean;
|
|
10048
10090
|
reportUsedIgnorePattern?: boolean;
|
|
10049
10091
|
})];
|
|
10050
10092
|
// ----- no-use-before-define -----
|
|
@@ -12698,10 +12740,12 @@ type StyleIndent = [] | [("tab" | number)] | [("tab" | number), {
|
|
|
12698
12740
|
FunctionDeclaration?: {
|
|
12699
12741
|
parameters?: (number | ("first" | "off"));
|
|
12700
12742
|
body?: number;
|
|
12743
|
+
returnType?: number;
|
|
12701
12744
|
};
|
|
12702
12745
|
FunctionExpression?: {
|
|
12703
12746
|
parameters?: (number | ("first" | "off"));
|
|
12704
12747
|
body?: number;
|
|
12748
|
+
returnType?: number;
|
|
12705
12749
|
};
|
|
12706
12750
|
StaticBlock?: {
|
|
12707
12751
|
body?: number;
|
|
@@ -12742,31 +12786,52 @@ type StyleJsxCurlyNewline = [] | [(("consistent" | "never") | {
|
|
|
12742
12786
|
multiline?: ("consistent" | "require" | "forbid");
|
|
12743
12787
|
})];
|
|
12744
12788
|
// ----- style/jsx-curly-spacing -----
|
|
12745
|
-
type StyleJsxCurlySpacing = [] | [(
|
|
12746
|
-
|
|
12747
|
-
children?: _StyleJsxCurlySpacingBasicConfigOrBoolean;
|
|
12748
|
-
[k: string]: unknown | undefined;
|
|
12749
|
-
}) | ("always" | "never"))] | [((_StyleJsxCurlySpacing_BasicConfig & {
|
|
12750
|
-
attributes?: _StyleJsxCurlySpacingBasicConfigOrBoolean;
|
|
12751
|
-
children?: _StyleJsxCurlySpacingBasicConfigOrBoolean;
|
|
12752
|
-
[k: string]: unknown | undefined;
|
|
12753
|
-
}) | ("always" | "never")), {
|
|
12789
|
+
type StyleJsxCurlySpacing = [] | [({
|
|
12790
|
+
when?: ("always" | "never");
|
|
12754
12791
|
allowMultiline?: boolean;
|
|
12755
12792
|
spacing?: {
|
|
12756
12793
|
objectLiterals?: ("always" | "never");
|
|
12757
|
-
[k: string]: unknown | undefined;
|
|
12758
12794
|
};
|
|
12759
|
-
|
|
12760
|
-
|
|
12761
|
-
|
|
12795
|
+
attributes?: ({
|
|
12796
|
+
when?: ("always" | "never");
|
|
12797
|
+
allowMultiline?: boolean;
|
|
12798
|
+
spacing?: {
|
|
12799
|
+
objectLiterals?: ("always" | "never");
|
|
12800
|
+
};
|
|
12801
|
+
} | boolean);
|
|
12802
|
+
children?: ({
|
|
12803
|
+
when?: ("always" | "never");
|
|
12804
|
+
allowMultiline?: boolean;
|
|
12805
|
+
spacing?: {
|
|
12806
|
+
objectLiterals?: ("always" | "never");
|
|
12807
|
+
};
|
|
12808
|
+
} | boolean);
|
|
12809
|
+
} | ("always" | "never"))] | [({
|
|
12762
12810
|
when?: ("always" | "never");
|
|
12763
12811
|
allowMultiline?: boolean;
|
|
12764
12812
|
spacing?: {
|
|
12765
12813
|
objectLiterals?: ("always" | "never");
|
|
12766
|
-
[k: string]: unknown | undefined;
|
|
12767
12814
|
};
|
|
12768
|
-
|
|
12769
|
-
|
|
12815
|
+
attributes?: ({
|
|
12816
|
+
when?: ("always" | "never");
|
|
12817
|
+
allowMultiline?: boolean;
|
|
12818
|
+
spacing?: {
|
|
12819
|
+
objectLiterals?: ("always" | "never");
|
|
12820
|
+
};
|
|
12821
|
+
} | boolean);
|
|
12822
|
+
children?: ({
|
|
12823
|
+
when?: ("always" | "never");
|
|
12824
|
+
allowMultiline?: boolean;
|
|
12825
|
+
spacing?: {
|
|
12826
|
+
objectLiterals?: ("always" | "never");
|
|
12827
|
+
};
|
|
12828
|
+
} | boolean);
|
|
12829
|
+
} | ("always" | "never")), {
|
|
12830
|
+
allowMultiline?: boolean;
|
|
12831
|
+
spacing?: {
|
|
12832
|
+
objectLiterals?: ("always" | "never");
|
|
12833
|
+
};
|
|
12834
|
+
}];
|
|
12770
12835
|
// ----- style/jsx-equals-spacing -----
|
|
12771
12836
|
type StyleJsxEqualsSpacing = [] | [("always" | "never")];
|
|
12772
12837
|
// ----- style/jsx-first-prop-new-line -----
|
|
@@ -12782,14 +12847,12 @@ type StyleJsxIndent = [] | [("tab" | number)] | [("tab" | number), {
|
|
|
12782
12847
|
type StyleJsxIndentProps = [] | [(("tab" | "first") | number | {
|
|
12783
12848
|
indentMode?: (("tab" | "first") | number);
|
|
12784
12849
|
ignoreTernaryOperator?: boolean;
|
|
12785
|
-
[k: string]: unknown | undefined;
|
|
12786
12850
|
})];
|
|
12787
12851
|
// ----- style/jsx-max-props-per-line -----
|
|
12788
12852
|
type StyleJsxMaxPropsPerLine = [] | [({
|
|
12789
12853
|
maximum?: {
|
|
12790
12854
|
single?: number;
|
|
12791
12855
|
multi?: number;
|
|
12792
|
-
[k: string]: unknown | undefined;
|
|
12793
12856
|
};
|
|
12794
12857
|
} | {
|
|
12795
12858
|
maximum?: number;
|
|
@@ -13136,6 +13199,10 @@ type StyleKeywordSpacing = [] | [{
|
|
|
13136
13199
|
before?: boolean;
|
|
13137
13200
|
after?: boolean;
|
|
13138
13201
|
};
|
|
13202
|
+
accessor?: {
|
|
13203
|
+
before?: boolean;
|
|
13204
|
+
after?: boolean;
|
|
13205
|
+
};
|
|
13139
13206
|
as?: {
|
|
13140
13207
|
before?: boolean;
|
|
13141
13208
|
after?: boolean;
|
|
@@ -13348,11 +13415,11 @@ interface _StyleMemberDelimiterStyle_DelimiterConfig {
|
|
|
13348
13415
|
// ----- style/multiline-comment-style -----
|
|
13349
13416
|
type StyleMultilineCommentStyle = ([] | [("starred-block" | "bare-block")] | [] | ["separate-lines"] | ["separate-lines", {
|
|
13350
13417
|
checkJSDoc?: boolean;
|
|
13418
|
+
checkExclamation?: boolean;
|
|
13351
13419
|
}]);
|
|
13352
13420
|
// ----- style/multiline-ternary -----
|
|
13353
13421
|
type StyleMultilineTernary = [] | [("always" | "always-multiline" | "never")] | [("always" | "always-multiline" | "never"), {
|
|
13354
13422
|
ignoreJSX?: boolean;
|
|
13355
|
-
[k: string]: unknown | undefined;
|
|
13356
13423
|
}];
|
|
13357
13424
|
// ----- style/new-parens -----
|
|
13358
13425
|
type StyleNewParens = [] | [("always" | "never")];
|
|
@@ -13497,11 +13564,12 @@ type StylePaddedBlocks = [] | [(("always" | "never" | "start" | "end") | {
|
|
|
13497
13564
|
}];
|
|
13498
13565
|
// ----- style/padding-line-between-statements -----
|
|
13499
13566
|
type _StylePaddingLineBetweenStatementsPaddingType = ("any" | "never" | "always");
|
|
13500
|
-
type
|
|
13567
|
+
type _StylePaddingLineBetweenStatementsStatementOption = (_StylePaddingLineBetweenStatementsStatementType | [_StylePaddingLineBetweenStatementsStatementType, ...(_StylePaddingLineBetweenStatementsStatementType)[]]);
|
|
13568
|
+
type _StylePaddingLineBetweenStatementsStatementType = ("*" | "exports" | "require" | "directive" | "iife" | "block" | "empty" | "function" | "ts-method" | "break" | "case" | "class" | "continue" | "debugger" | "default" | "do" | "for" | "if" | "import" | "return" | "switch" | "throw" | "try" | "while" | "with" | "cjs-export" | "cjs-import" | "enum" | "interface" | "type" | "function-overload" | "block-like" | "singleline-block-like" | "multiline-block-like" | "expression" | "singleline-expression" | "multiline-expression" | "export" | "singleline-export" | "multiline-export" | "var" | "singleline-var" | "multiline-var" | "let" | "singleline-let" | "multiline-let" | "const" | "singleline-const" | "multiline-const" | "using" | "singleline-using" | "multiline-using");
|
|
13501
13569
|
type StylePaddingLineBetweenStatements = {
|
|
13502
13570
|
blankLine: _StylePaddingLineBetweenStatementsPaddingType;
|
|
13503
|
-
prev:
|
|
13504
|
-
next:
|
|
13571
|
+
prev: _StylePaddingLineBetweenStatementsStatementOption;
|
|
13572
|
+
next: _StylePaddingLineBetweenStatementsStatementOption;
|
|
13505
13573
|
}[];
|
|
13506
13574
|
// ----- style/quote-props -----
|
|
13507
13575
|
type StyleQuoteProps = ([] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [] | [("always" | "as-needed" | "consistent" | "consistent-as-needed")] | [("always" | "as-needed" | "consistent" | "consistent-as-needed"), {
|
|
@@ -14709,7 +14777,6 @@ type TsPreferDestructuring = [] | [({
|
|
|
14709
14777
|
}), {
|
|
14710
14778
|
enforceForDeclarationWithTypeAnnotation?: boolean;
|
|
14711
14779
|
enforceForRenamedProperties?: boolean;
|
|
14712
|
-
[k: string]: unknown | undefined;
|
|
14713
14780
|
}];
|
|
14714
14781
|
// ----- ts/prefer-literal-enum-member -----
|
|
14715
14782
|
type TsPreferLiteralEnumMember = [] | [{
|
|
@@ -14727,7 +14794,6 @@ type TsPreferNullishCoalescing = [] | [{
|
|
|
14727
14794
|
boolean?: boolean;
|
|
14728
14795
|
number?: boolean;
|
|
14729
14796
|
string?: boolean;
|
|
14730
|
-
[k: string]: unknown | undefined;
|
|
14731
14797
|
} | true);
|
|
14732
14798
|
ignoreTernaryTests?: boolean;
|
|
14733
14799
|
}];
|
|
@@ -14936,6 +15002,10 @@ interface _UnicornImportStyle_BooleanObject {
|
|
|
14936
15002
|
type UnicornNoArrayReduce = [] | [{
|
|
14937
15003
|
allowSimpleOperations?: boolean;
|
|
14938
15004
|
}];
|
|
15005
|
+
// ----- unicorn/no-array-reverse -----
|
|
15006
|
+
type UnicornNoArrayReverse = [] | [{
|
|
15007
|
+
allowExpressionStatement?: boolean;
|
|
15008
|
+
}];
|
|
14939
15009
|
// ----- unicorn/no-instanceof-builtins -----
|
|
14940
15010
|
type UnicornNoInstanceofBuiltins = [] | [{
|
|
14941
15011
|
useErrorIsError?: boolean;
|
|
@@ -16527,14 +16597,20 @@ type ConfigNames = 'luxass/astro/setup' | 'luxass/astro/rules' | 'luxass/eslint-
|
|
|
16527
16597
|
//#endregion
|
|
16528
16598
|
//#region src/types.d.ts
|
|
16529
16599
|
type Awaitable<T> = T | Promise<T>;
|
|
16530
|
-
|
|
16531
|
-
type TypedFlatConfigItem = Omit<Linter.Config
|
|
16600
|
+
type Rules = Record<string, Linter.RuleEntry<any> | undefined> & RuleOptions;
|
|
16601
|
+
type TypedFlatConfigItem = Omit<Linter.Config, "plugins" | "rules"> & {
|
|
16532
16602
|
/**
|
|
16533
|
-
* An object containing a name-value mapping of plugin names to plugin objects.
|
|
16603
|
+
* An object containing a name-value mapping of plugin names to plugin objects.
|
|
16604
|
+
* When `files` is specified, these plugins are only available to the matching files.
|
|
16534
16605
|
*
|
|
16535
16606
|
* @see [Using plugins in your configuration](https://eslint.org/docs/latest/user-guide/configuring/configuration-files-new#using-plugins-in-your-configuration)
|
|
16536
16607
|
*/
|
|
16537
16608
|
plugins?: Record<string, any>;
|
|
16609
|
+
/**
|
|
16610
|
+
* An object containing the configured rules. When `files` or `ignores` are
|
|
16611
|
+
* specified, these rule configurations are only available to the matching files.
|
|
16612
|
+
*/
|
|
16613
|
+
rules?: Rules;
|
|
16538
16614
|
};
|
|
16539
16615
|
type UserConfigItem = TypedFlatConfigItem | Linter.Config;
|
|
16540
16616
|
type ProjectType = "app" | "lib";
|
|
@@ -16930,4 +17006,4 @@ declare function isPackageInScope(name: string): boolean;
|
|
|
16930
17006
|
declare function isInEditorEnv(): boolean;
|
|
16931
17007
|
declare function isInGitHooksOrLintStaged(): boolean;
|
|
16932
17008
|
//#endregion
|
|
16933
|
-
export { AstroOptions, Awaitable, ConfigNames, ConfigOptions, FormattersOptions, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_NEXTJS_OG, GLOB_NEXTJS_ROUTES, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, ImportsOptions, JSDOCOptions, JSONOptions, JavaScriptOptions, MarkdownOptions, ProjectType, ReactOptions, RegExpOptions, ResolvedOptions, Rules, StylisticConfig, StylisticOptions, TOMLOptions, TailwindCSSOptions, TestOptions, TypeScriptOptions, TypedFlatConfigItem, UnicornOptions, UnoCSSOptions, UserConfigItem, VueOptions, YAMLOptions, astro, combine, comments, luxass as default, luxass, disables, ensure, formatters, getOverrides, ignores, imports, interop, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, javascript, jsdoc, jsonc, jsx, markdown, node, parserPlain, perfectionist, pnpm, react, regexp, renamePluginInConfigs, renameRules, resolveSubOptions, sortPackageJson, sortTsconfig, stylistic, tailwindcss, test, toArray, toml, typescript, unicorn, unocss, vue, yaml };
|
|
17009
|
+
export { AstroOptions, Awaitable, type ConfigNames, ConfigOptions, FormattersOptions, GLOB_ASTRO, GLOB_ASTRO_TS, GLOB_CSS, GLOB_EXCLUDE, GLOB_GRAPHQL, GLOB_HTML, GLOB_JS, GLOB_JSON, GLOB_JSON5, GLOB_JSONC, GLOB_JSX, GLOB_LESS, GLOB_MARKDOWN, GLOB_MARKDOWN_CODE, GLOB_MARKDOWN_IN_MARKDOWN, GLOB_NEXTJS_OG, GLOB_NEXTJS_ROUTES, GLOB_POSTCSS, GLOB_SCSS, GLOB_SRC, GLOB_SRC_EXT, GLOB_STYLE, GLOB_SVELTE, GLOB_TESTS, GLOB_TOML, GLOB_TS, GLOB_TSX, GLOB_VUE, GLOB_YAML, ImportsOptions, JSDOCOptions, JSONOptions, JavaScriptOptions, MarkdownOptions, ProjectType, ReactOptions, RegExpOptions, ResolvedOptions, Rules, StylisticConfig, StylisticOptions, TOMLOptions, TailwindCSSOptions, TestOptions, TypeScriptOptions, TypedFlatConfigItem, UnicornOptions, UnoCSSOptions, UserConfigItem, VueOptions, YAMLOptions, astro, combine, comments, luxass as default, luxass, disables, ensure, formatters, getOverrides, ignores, imports, interop, isInEditorEnv, isInGitHooksOrLintStaged, isPackageInScope, javascript, jsdoc, jsonc, jsx, markdown, node, parserPlain, perfectionist, pnpm, react, regexp, renamePluginInConfigs, renameRules, resolveSubOptions, sortPackageJson, sortTsconfig, stylistic, tailwindcss, test, toArray, toml, typescript, unicorn, unocss, vue, yaml };
|
package/dist/index.js
CHANGED
|
@@ -1413,7 +1413,7 @@ function sortPackageJson() {
|
|
|
1413
1413
|
*/
|
|
1414
1414
|
function sortTsconfig() {
|
|
1415
1415
|
return [{
|
|
1416
|
-
files: ["**/
|
|
1416
|
+
files: ["**/[jt]sconfig.json", "**/[jt]sconfig.*.json"],
|
|
1417
1417
|
name: "luxass/sort/tsconfig",
|
|
1418
1418
|
rules: { "jsonc/sort-keys": [
|
|
1419
1419
|
"error",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luxass/eslint-config",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.2.0",
|
|
4
4
|
"description": "ESLint config for @luxass",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -83,26 +83,26 @@
|
|
|
83
83
|
"@antfu/install-pkg": "^1.1.0",
|
|
84
84
|
"@clack/prompts": "^0.11.0",
|
|
85
85
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
86
|
-
"@eslint/markdown": "^
|
|
87
|
-
"@stylistic/eslint-plugin": "^5.
|
|
88
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
89
|
-
"@typescript-eslint/parser": "^8.
|
|
86
|
+
"@eslint/markdown": "^7.1.0",
|
|
87
|
+
"@stylistic/eslint-plugin": "^5.2.2",
|
|
88
|
+
"@typescript-eslint/eslint-plugin": "^8.38.0",
|
|
89
|
+
"@typescript-eslint/parser": "^8.38.0",
|
|
90
90
|
"@vitest/eslint-plugin": "^1.3.4",
|
|
91
91
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
92
92
|
"eslint-flat-config-utils": "^2.1.0",
|
|
93
93
|
"eslint-merge-processors": "^2.0.0",
|
|
94
94
|
"eslint-plugin-antfu": "^3.1.1",
|
|
95
95
|
"eslint-plugin-import-lite": "^0.3.0",
|
|
96
|
-
"eslint-plugin-jsdoc": "^
|
|
96
|
+
"eslint-plugin-jsdoc": "^52.0.0",
|
|
97
97
|
"eslint-plugin-jsonc": "^2.20.1",
|
|
98
|
-
"eslint-plugin-n": "^17.
|
|
98
|
+
"eslint-plugin-n": "^17.21.3",
|
|
99
99
|
"eslint-plugin-perfectionist": "^4.15.0",
|
|
100
|
-
"eslint-plugin-pnpm": "^
|
|
100
|
+
"eslint-plugin-pnpm": "^1.1.0",
|
|
101
101
|
"eslint-plugin-regexp": "^2.9.0",
|
|
102
102
|
"eslint-plugin-toml": "^0.12.0",
|
|
103
|
-
"eslint-plugin-unicorn": "^
|
|
103
|
+
"eslint-plugin-unicorn": "^60.0.0",
|
|
104
104
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
105
|
-
"eslint-plugin-vue": "^10.
|
|
105
|
+
"eslint-plugin-vue": "^10.3.0",
|
|
106
106
|
"eslint-plugin-yml": "^1.18.0",
|
|
107
107
|
"eslint-processor-vue-blocks": "^2.0.0",
|
|
108
108
|
"globals": "^16.3.0",
|
|
@@ -114,28 +114,28 @@
|
|
|
114
114
|
"yaml-eslint-parser": "^1.3.0"
|
|
115
115
|
},
|
|
116
116
|
"devDependencies": {
|
|
117
|
-
"@eslint-react/eslint-plugin": "^1.52.
|
|
117
|
+
"@eslint-react/eslint-plugin": "^1.52.3",
|
|
118
118
|
"@eslint/config-inspector": "^1.1.0",
|
|
119
119
|
"@types/node": "^22.13.10",
|
|
120
|
-
"@typescript-eslint/rule-tester": "^8.
|
|
121
|
-
"@unocss/eslint-plugin": "^66.3.
|
|
120
|
+
"@typescript-eslint/rule-tester": "^8.38.0",
|
|
121
|
+
"@unocss/eslint-plugin": "^66.3.3",
|
|
122
122
|
"astro-eslint-parser": "^1.2.2",
|
|
123
|
-
"eslint": "^9.
|
|
123
|
+
"eslint": "^9.32.0",
|
|
124
124
|
"eslint-plugin-astro": "^1.3.1",
|
|
125
125
|
"eslint-plugin-format": "^1.0.1",
|
|
126
126
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
127
127
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
128
128
|
"eslint-plugin-tailwindcss": "^3.18.0",
|
|
129
|
-
"eslint-typegen": "^2.
|
|
130
|
-
"jiti": "^2.
|
|
129
|
+
"eslint-typegen": "^2.3.0",
|
|
130
|
+
"jiti": "^2.5.1",
|
|
131
131
|
"prettier-plugin-astro": "^0.14.1",
|
|
132
132
|
"tailwindcss": "3.4.17",
|
|
133
|
-
"tsdown": "^0.
|
|
133
|
+
"tsdown": "^0.13.0",
|
|
134
134
|
"tsx": "^4.20.3",
|
|
135
135
|
"typescript": "^5.8.3",
|
|
136
|
-
"unocss": "^66.3.
|
|
136
|
+
"unocss": "^66.3.3",
|
|
137
137
|
"vitest": "^3.2.4",
|
|
138
|
-
"vue": "^3.5.
|
|
138
|
+
"vue": "^3.5.18"
|
|
139
139
|
},
|
|
140
140
|
"scripts": {
|
|
141
141
|
"build": "pnpm typegen && tsdown --clean --dts",
|