eslint-plugin-typefest 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +88 -79
- package/dist/_internal/rule-catalog.d.ts.map +1 -1
- package/dist/_internal/rule-catalog.js +9 -0
- package/dist/_internal/rule-catalog.js.map +1 -1
- package/dist/_internal/rules-registry.d.ts.map +1 -1
- package/dist/_internal/rules-registry.js +18 -0
- package/dist/_internal/rules-registry.js.map +1 -1
- package/dist/plugin.cjs +880 -48
- package/dist/plugin.cjs.map +4 -4
- package/dist/rules/prefer-type-fest-and-all.d.ts +13 -0
- package/dist/rules/prefer-type-fest-and-all.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-and-all.js +105 -0
- package/dist/rules/prefer-type-fest-and-all.js.map +1 -0
- package/dist/rules/prefer-type-fest-array-length.d.ts +13 -0
- package/dist/rules/prefer-type-fest-array-length.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-array-length.js +77 -0
- package/dist/rules/prefer-type-fest-array-length.js.map +1 -0
- package/dist/rules/prefer-type-fest-conditional-pick-deep.d.ts +13 -0
- package/dist/rules/prefer-type-fest-conditional-pick-deep.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-conditional-pick-deep.js +75 -0
- package/dist/rules/prefer-type-fest-conditional-pick-deep.js.map +1 -0
- package/dist/rules/prefer-type-fest-less-than-or-equal.d.ts +13 -0
- package/dist/rules/prefer-type-fest-less-than-or-equal.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-less-than-or-equal.js +153 -0
- package/dist/rules/prefer-type-fest-less-than-or-equal.js.map +1 -0
- package/dist/rules/prefer-type-fest-less-than.d.ts +13 -0
- package/dist/rules/prefer-type-fest-less-than.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-less-than.js +154 -0
- package/dist/rules/prefer-type-fest-less-than.js.map +1 -0
- package/dist/rules/prefer-type-fest-optional.d.ts +13 -0
- package/dist/rules/prefer-type-fest-optional.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-optional.js +130 -0
- package/dist/rules/prefer-type-fest-optional.js.map +1 -0
- package/dist/rules/prefer-type-fest-or-all.d.ts +13 -0
- package/dist/rules/prefer-type-fest-or-all.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-or-all.js +105 -0
- package/dist/rules/prefer-type-fest-or-all.js.map +1 -0
- package/dist/rules/prefer-type-fest-union-member.d.ts +13 -0
- package/dist/rules/prefer-type-fest-union-member.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-union-member.js +159 -0
- package/dist/rules/prefer-type-fest-union-member.js.map +1 -0
- package/dist/rules/prefer-type-fest-union-to-tuple.d.ts +13 -0
- package/dist/rules/prefer-type-fest-union-to-tuple.d.ts.map +1 -0
- package/dist/rules/prefer-type-fest-union-to-tuple.js +75 -0
- package/dist/rules/prefer-type-fest-union-to-tuple.js.map +1 -0
- package/docs/rules/prefer-type-fest-and-all.md +111 -0
- package/docs/rules/prefer-type-fest-array-length.md +109 -0
- package/docs/rules/prefer-type-fest-conditional-pick-deep.md +112 -0
- package/docs/rules/prefer-type-fest-less-than-or-equal.md +111 -0
- package/docs/rules/prefer-type-fest-less-than.md +111 -0
- package/docs/rules/prefer-type-fest-optional.md +104 -0
- package/docs/rules/prefer-type-fest-or-all.md +111 -0
- package/docs/rules/prefer-type-fest-union-member.md +119 -0
- package/docs/rules/prefer-type-fest-union-to-tuple.md +108 -0
- package/docs/rules/presets/all.md +9 -0
- package/docs/rules/presets/index.md +87 -78
- package/docs/rules/presets/recommended-type-checked.md +74 -65
- package/docs/rules/presets/recommended.md +8 -0
- package/docs/rules/presets/strict.md +9 -0
- package/docs/rules/presets/type-fest-types.md +8 -0
- package/package.json +46 -37
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# eslint-plugin-typefest
|
|
2
2
|
|
|
3
|
-
[](https://github.com/Nick2bad4u/eslint-plugin-typefest/blob/main/LICENSE) [](https://www.npmjs.com/package/eslint-plugin-typefest) [](https://github.com/Nick2bad4u/eslint-plugin-typefest/releases) [](https://github.com/Nick2bad4u/eslint-plugin-typefest/stargazers) [](https://github.com/Nick2bad4u/eslint-plugin-typefest/forks) [](https://github.com/Nick2bad4u/eslint-plugin-typefest/issues) [](https://codecov.io/gh/Nick2bad4u/eslint-plugin-typefest) [](https://dashboard.stryker-mutator.io/reports/github.com/Nick2bad4u/eslint-plugin-typefest/main)
|
|
4
4
|
|
|
5
5
|
ESLint plugin for teams that want consistent TypeScript-first conventions based on:
|
|
6
6
|
|
|
@@ -170,84 +170,93 @@ autofix behavior.
|
|
|
170
170
|
- [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) — [`typefest.configs["type-fest/types"]`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types)
|
|
171
171
|
- [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) — [`typefest.configs["ts-extras/type-guards"]`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards)
|
|
172
172
|
|
|
173
|
-
| Rule
|
|
174
|
-
|
|
|
175
|
-
| [`prefer-ts-extras-array-at`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-at)
|
|
176
|
-
| [`prefer-ts-extras-array-concat`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-concat)
|
|
177
|
-
| [`prefer-ts-extras-array-find`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-find)
|
|
178
|
-
| [`prefer-ts-extras-array-find-last`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-find-last)
|
|
179
|
-
| [`prefer-ts-extras-array-find-last-index`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-find-last-index) |
|
|
180
|
-
| [`prefer-ts-extras-array-first`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-first)
|
|
181
|
-
| [`prefer-ts-extras-array-includes`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-includes)
|
|
182
|
-
| [`prefer-ts-extras-array-join`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-join)
|
|
183
|
-
| [`prefer-ts-extras-array-last`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-last)
|
|
184
|
-
| [`prefer-ts-extras-as-writable`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-as-writable)
|
|
185
|
-
| [`prefer-ts-extras-assert-defined`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-assert-defined)
|
|
186
|
-
| [`prefer-ts-extras-assert-error`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-assert-error)
|
|
187
|
-
| [`prefer-ts-extras-assert-present`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-assert-present)
|
|
188
|
-
| [`prefer-ts-extras-is-defined`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-defined)
|
|
189
|
-
| [`prefer-ts-extras-is-defined-filter`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-defined-filter)
|
|
190
|
-
| [`prefer-ts-extras-is-empty`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-empty)
|
|
191
|
-
| [`prefer-ts-extras-is-equal-type`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-equal-type)
|
|
192
|
-
| [`prefer-ts-extras-is-finite`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-finite)
|
|
193
|
-
| [`prefer-ts-extras-is-infinite`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-infinite)
|
|
194
|
-
| [`prefer-ts-extras-is-integer`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-integer)
|
|
195
|
-
| [`prefer-ts-extras-is-present`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-present)
|
|
196
|
-
| [`prefer-ts-extras-is-present-filter`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-present-filter)
|
|
197
|
-
| [`prefer-ts-extras-is-safe-integer`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-safe-integer)
|
|
198
|
-
| [`prefer-ts-extras-key-in`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-key-in)
|
|
199
|
-
| [`prefer-ts-extras-not`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-not)
|
|
200
|
-
| [`prefer-ts-extras-object-entries`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-entries)
|
|
201
|
-
| [`prefer-ts-extras-object-from-entries`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-from-entries)
|
|
202
|
-
| [`prefer-ts-extras-object-has-in`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-has-in)
|
|
203
|
-
| [`prefer-ts-extras-object-has-own`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-has-own)
|
|
204
|
-
| [`prefer-ts-extras-object-keys`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-keys)
|
|
205
|
-
| [`prefer-ts-extras-object-values`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-values)
|
|
206
|
-
| [`prefer-ts-extras-safe-cast-to`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-safe-cast-to)
|
|
207
|
-
| [`prefer-ts-extras-set-has`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-set-has)
|
|
208
|
-
| [`prefer-ts-extras-string-split`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-string-split)
|
|
209
|
-
| [`prefer-type-fest-abstract-constructor`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-abstract-constructor)
|
|
210
|
-
| [`prefer-type-fest-
|
|
211
|
-
| [`prefer-type-fest-
|
|
212
|
-
| [`prefer-type-fest-
|
|
213
|
-
| [`prefer-type-fest-
|
|
214
|
-
| [`prefer-type-fest-
|
|
215
|
-
| [`prefer-type-fest-
|
|
216
|
-
| [`prefer-type-fest-
|
|
217
|
-
| [`prefer-type-fest-
|
|
218
|
-
| [`prefer-type-fest-
|
|
219
|
-
| [`prefer-type-fest-
|
|
220
|
-
| [`prefer-type-fest-json-
|
|
221
|
-
| [`prefer-type-fest-
|
|
222
|
-
| [`prefer-type-fest-
|
|
223
|
-
| [`prefer-type-fest-
|
|
224
|
-
| [`prefer-type-fest-
|
|
225
|
-
| [`prefer-type-fest-
|
|
226
|
-
| [`prefer-type-fest-
|
|
227
|
-
| [`prefer-type-fest-
|
|
228
|
-
| [`prefer-type-fest-
|
|
229
|
-
| [`prefer-type-fest-
|
|
230
|
-
| [`prefer-type-fest-
|
|
231
|
-
| [`prefer-type-fest-
|
|
232
|
-
| [`prefer-type-fest-
|
|
233
|
-
| [`prefer-type-fest-
|
|
234
|
-
| [`prefer-type-fest-
|
|
235
|
-
| [`prefer-type-fest-
|
|
236
|
-
| [`prefer-type-fest-
|
|
237
|
-
| [`prefer-type-fest-
|
|
238
|
-
| [`prefer-type-fest-
|
|
239
|
-
| [`prefer-type-fest-
|
|
240
|
-
| [`prefer-type-fest-
|
|
241
|
-
| [`prefer-type-fest-
|
|
242
|
-
| [`prefer-type-fest-
|
|
243
|
-
| [`prefer-type-fest-
|
|
244
|
-
| [`prefer-type-fest-
|
|
245
|
-
| [`prefer-type-fest-
|
|
246
|
-
| [`prefer-type-fest-
|
|
247
|
-
| [`prefer-type-fest-
|
|
248
|
-
| [`prefer-type-fest-
|
|
249
|
-
| [`prefer-type-fest-
|
|
250
|
-
| [`prefer-type-fest-
|
|
173
|
+
| Rule | Fix | Preset key |
|
|
174
|
+
| --- | :-: | :-- |
|
|
175
|
+
| [`prefer-ts-extras-array-at`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-at) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
176
|
+
| [`prefer-ts-extras-array-concat`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-concat) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
177
|
+
| [`prefer-ts-extras-array-find`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-find) | 🔧 | [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
178
|
+
| [`prefer-ts-extras-array-find-last`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-find-last) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
179
|
+
| [`prefer-ts-extras-array-find-last-index`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-find-last-index) | 🔧 | [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
180
|
+
| [`prefer-ts-extras-array-first`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-first) | 🔧 💡 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
181
|
+
| [`prefer-ts-extras-array-includes`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-includes) | 🔧 💡 | [🟠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended-type-checked) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
182
|
+
| [`prefer-ts-extras-array-join`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-join) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
183
|
+
| [`prefer-ts-extras-array-last`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-array-last) | 🔧 💡 | [🟠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended-type-checked) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
184
|
+
| [`prefer-ts-extras-as-writable`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-as-writable) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
185
|
+
| [`prefer-ts-extras-assert-defined`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-assert-defined) | 🔧 💡 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
186
|
+
| [`prefer-ts-extras-assert-error`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-assert-error) | 💡 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
187
|
+
| [`prefer-ts-extras-assert-present`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-assert-present) | 🔧 💡 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
188
|
+
| [`prefer-ts-extras-is-defined`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-defined) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
189
|
+
| [`prefer-ts-extras-is-defined-filter`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-defined-filter) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
190
|
+
| [`prefer-ts-extras-is-empty`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-empty) | 🔧 | [🟠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended-type-checked) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
191
|
+
| [`prefer-ts-extras-is-equal-type`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-equal-type) | 💡 | [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
192
|
+
| [`prefer-ts-extras-is-finite`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-finite) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
193
|
+
| [`prefer-ts-extras-is-infinite`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-infinite) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
194
|
+
| [`prefer-ts-extras-is-integer`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-integer) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
195
|
+
| [`prefer-ts-extras-is-present`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-present) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
196
|
+
| [`prefer-ts-extras-is-present-filter`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-present-filter) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
197
|
+
| [`prefer-ts-extras-is-safe-integer`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-is-safe-integer) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
198
|
+
| [`prefer-ts-extras-key-in`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-key-in) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
199
|
+
| [`prefer-ts-extras-not`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-not) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
200
|
+
| [`prefer-ts-extras-object-entries`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-entries) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
201
|
+
| [`prefer-ts-extras-object-from-entries`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-from-entries) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
202
|
+
| [`prefer-ts-extras-object-has-in`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-has-in) | 🔧 💡 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
203
|
+
| [`prefer-ts-extras-object-has-own`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-has-own) | 🔧 💡 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
204
|
+
| [`prefer-ts-extras-object-keys`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-keys) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
205
|
+
| [`prefer-ts-extras-object-values`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-object-values) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
206
|
+
| [`prefer-ts-extras-safe-cast-to`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-safe-cast-to) | 🔧 | [🟠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended-type-checked) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
207
|
+
| [`prefer-ts-extras-set-has`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-set-has) | 🔧 💡 | [🟠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended-type-checked) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [✴️](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/ts-extras-type-guards) |
|
|
208
|
+
| [`prefer-ts-extras-string-split`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-ts-extras-string-split) | 🔧 | [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
209
|
+
| [`prefer-type-fest-abstract-constructor`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-abstract-constructor) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
210
|
+
| [`prefer-type-fest-and-all`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-and-all) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
211
|
+
| [`prefer-type-fest-array-length`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-array-length) | 🔧 | [🟠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended-type-checked) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) |
|
|
212
|
+
| [`prefer-type-fest-arrayable`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-arrayable) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
213
|
+
| [`prefer-type-fest-async-return-type`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-async-return-type) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
214
|
+
| [`prefer-type-fest-conditional-pick`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-conditional-pick) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
215
|
+
| [`prefer-type-fest-conditional-pick-deep`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-conditional-pick-deep) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
216
|
+
| [`prefer-type-fest-constructor`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-constructor) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
217
|
+
| [`prefer-type-fest-except`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-except) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
218
|
+
| [`prefer-type-fest-if`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-if) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
219
|
+
| [`prefer-type-fest-iterable-element`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-iterable-element) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
220
|
+
| [`prefer-type-fest-json-array`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-json-array) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
221
|
+
| [`prefer-type-fest-json-object`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-json-object) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
222
|
+
| [`prefer-type-fest-json-primitive`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-json-primitive) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
223
|
+
| [`prefer-type-fest-json-value`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-json-value) | 💡 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
224
|
+
| [`prefer-type-fest-keys-of-union`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-keys-of-union) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
225
|
+
| [`prefer-type-fest-less-than`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-less-than) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
226
|
+
| [`prefer-type-fest-less-than-or-equal`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-less-than-or-equal) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
227
|
+
| [`prefer-type-fest-literal-union`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-literal-union) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
228
|
+
| [`prefer-type-fest-merge-exclusive`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-merge-exclusive) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
229
|
+
| [`prefer-type-fest-non-empty-tuple`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-non-empty-tuple) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
230
|
+
| [`prefer-type-fest-omit-index-signature`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-omit-index-signature) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
231
|
+
| [`prefer-type-fest-optional`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-optional) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
232
|
+
| [`prefer-type-fest-or-all`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-or-all) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
233
|
+
| [`prefer-type-fest-partial-deep`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-partial-deep) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
234
|
+
| [`prefer-type-fest-primitive`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-primitive) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
235
|
+
| [`prefer-type-fest-promisable`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-promisable) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
236
|
+
| [`prefer-type-fest-readonly-deep`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-readonly-deep) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
237
|
+
| [`prefer-type-fest-require-all-or-none`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-require-all-or-none) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
238
|
+
| [`prefer-type-fest-require-at-least-one`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-require-at-least-one) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
239
|
+
| [`prefer-type-fest-require-exactly-one`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-require-exactly-one) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
240
|
+
| [`prefer-type-fest-require-one-or-none`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-require-one-or-none) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
241
|
+
| [`prefer-type-fest-required-deep`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-required-deep) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
242
|
+
| [`prefer-type-fest-schema`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-schema) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
243
|
+
| [`prefer-type-fest-set-non-nullable`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-set-non-nullable) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
244
|
+
| [`prefer-type-fest-set-optional`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-set-optional) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
245
|
+
| [`prefer-type-fest-set-readonly`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-set-readonly) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
246
|
+
| [`prefer-type-fest-set-required`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-set-required) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
247
|
+
| [`prefer-type-fest-simplify`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-simplify) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
248
|
+
| [`prefer-type-fest-tagged-brands`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-tagged-brands) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
249
|
+
| [`prefer-type-fest-tuple-of`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-tuple-of) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
250
|
+
| [`prefer-type-fest-union-member`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-union-member) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
251
|
+
| [`prefer-type-fest-union-to-tuple`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-union-to-tuple) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
252
|
+
| [`prefer-type-fest-unknown-array`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-unknown-array) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
253
|
+
| [`prefer-type-fest-unknown-map`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-unknown-map) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
254
|
+
| [`prefer-type-fest-unknown-record`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-unknown-record) | 🔧 | [🟢](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/minimal) [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
255
|
+
| [`prefer-type-fest-unknown-set`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-unknown-set) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
256
|
+
| [`prefer-type-fest-unwrap-tagged`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-unwrap-tagged) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
257
|
+
| [`prefer-type-fest-value-of`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-value-of) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
258
|
+
| [`prefer-type-fest-writable`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-writable) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
259
|
+
| [`prefer-type-fest-writable-deep`](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/prefer-type-fest-writable-deep) | 🔧 | [🟡](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/recommended) [🔴](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/strict) [🟣](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/all) [💠](https://nick2bad4u.github.io/eslint-plugin-typefest/docs/rules/presets/type-fest-types) |
|
|
251
260
|
|
|
252
261
|
## Contributors ✨
|
|
253
262
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rule-catalog.d.ts","sourceRoot":"","sources":["../../src/_internal/rule-catalog.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG,QAAQ,CAAC;IAC5C,MAAM,EAAE,qBAAqB,CAAC;IAC9B,QAAQ,EAAE,uBAAuB,CAAC;IAClC,UAAU,EAAE,MAAM,CAAC;CACtB,CAAC,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,IAAI,MAAM,EAAE,CAAC;AAEjD,8EAA8E;AAC9E,KAAK,uBAAuB,GAAG,UAAU,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"rule-catalog.d.ts","sourceRoot":"","sources":["../../src/_internal/rule-catalog.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG,QAAQ,CAAC;IAC5C,MAAM,EAAE,qBAAqB,CAAC;IAC9B,QAAQ,EAAE,uBAAuB,CAAC;IAClC,UAAU,EAAE,MAAM,CAAC;CACtB,CAAC,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,IAAI,MAAM,EAAE,CAAC;AAEjD,8EAA8E;AAC9E,KAAK,uBAAuB,GAAG,UAAU,MAAM,EAAE,CAAC;AAuGlD;;GAEG;AACH,eAAO,MAAM,0BAA0B,EAAE,SAAS,wBAAwB,EASpE,CAAC;AAEP;;GAEG;AACH,eAAO,MAAM,6BAA6B,EAAE,QAAQ,CAChD,OAAO,CAAC,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,CAAC,CAGrE,CAAC;AAEF;;;;GAIG;AACH;;GAEG;AACH,eAAO,MAAM,oCAAoC,GAC7C,UAAU,MAAM,KACjB,IAAI,GAAG,wBAMT,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,8BAA8B,GACvC,UAAU,MAAM,KACjB,wBAUF,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,2BAA2B,EAAE,WAAW,CACjD,qBAAqB,EACrB,wBAAwB,CACiD,CAAC;AAE9E;;GAEG;AACH,eAAO,MAAM,4BAA4B,GACrC,QAAQ,qBAAqB,KAC9B,wBAAwB,GAAG,SACa,CAAC;AAE5C;;GAEG;AACH,eAAO,MAAM,4BAA4B,QAAO,OAsB/C,CAAC"}
|
|
@@ -86,6 +86,15 @@ const orderedRuleNames = [
|
|
|
86
86
|
"prefer-type-fest-value-of",
|
|
87
87
|
"prefer-type-fest-writable",
|
|
88
88
|
"prefer-type-fest-writable-deep",
|
|
89
|
+
"prefer-type-fest-and-all",
|
|
90
|
+
"prefer-type-fest-array-length",
|
|
91
|
+
"prefer-type-fest-optional",
|
|
92
|
+
"prefer-type-fest-or-all",
|
|
93
|
+
"prefer-type-fest-union-member",
|
|
94
|
+
"prefer-type-fest-conditional-pick-deep",
|
|
95
|
+
"prefer-type-fest-union-to-tuple",
|
|
96
|
+
"prefer-type-fest-less-than",
|
|
97
|
+
"prefer-type-fest-less-than-or-equal",
|
|
89
98
|
];
|
|
90
99
|
const toRuleCatalogId = (ruleNumber) => `R${String(ruleNumber).padStart(3, "0")}`;
|
|
91
100
|
const isTypefestRuleNamePattern = (ruleName) => ruleName.startsWith("prefer-");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rule-catalog.js","sourceRoot":"","sources":["../../src/_internal/rule-catalog.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,EAAE,iBAAiB,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAmBtD;;;;;GAKG;AACH,MAAM,gBAAgB,GAAG;IACrB,2BAA2B;IAC3B,+BAA+B;IAC/B,6BAA6B;IAC7B,kCAAkC;IAClC,wCAAwC;IACxC,8BAA8B;IAC9B,iCAAiC;IACjC,6BAA6B;IAC7B,6BAA6B;IAC7B,8BAA8B;IAC9B,iCAAiC;IACjC,+BAA+B;IAC/B,iCAAiC;IACjC,6BAA6B;IAC7B,oCAAoC;IACpC,2BAA2B;IAC3B,gCAAgC;IAChC,4BAA4B;IAC5B,8BAA8B;IAC9B,6BAA6B;IAC7B,6BAA6B;IAC7B,oCAAoC;IACpC,kCAAkC;IAClC,yBAAyB;IACzB,sBAAsB;IACtB,iCAAiC;IACjC,sCAAsC;IACtC,gCAAgC;IAChC,iCAAiC;IACjC,8BAA8B;IAC9B,gCAAgC;IAChC,+BAA+B;IAC/B,0BAA0B;IAC1B,+BAA+B;IAC/B,uCAAuC;IACvC,4BAA4B;IAC5B,oCAAoC;IACpC,mCAAmC;IACnC,8BAA8B;IAC9B,yBAAyB;IACzB,qBAAqB;IACrB,mCAAmC;IACnC,6BAA6B;IAC7B,8BAA8B;IAC9B,iCAAiC;IACjC,6BAA6B;IAC7B,gCAAgC;IAChC,gCAAgC;IAChC,kCAAkC;IAClC,kCAAkC;IAClC,uCAAuC;IACvC,+BAA+B;IAC/B,4BAA4B;IAC5B,6BAA6B;IAC7B,gCAAgC;IAChC,sCAAsC;IACtC,uCAAuC;IACvC,sCAAsC;IACtC,sCAAsC;IACtC,gCAAgC;IAChC,yBAAyB;IACzB,mCAAmC;IACnC,+BAA+B;IAC/B,+BAA+B;IAC/B,+BAA+B;IAC/B,2BAA2B;IAC3B,gCAAgC;IAChC,2BAA2B;IAC3B,gCAAgC;IAChC,8BAA8B;IAC9B,iCAAiC;IACjC,8BAA8B;IAC9B,gCAAgC;IAChC,2BAA2B;IAC3B,2BAA2B;IAC3B,gCAAgC;
|
|
1
|
+
{"version":3,"file":"rule-catalog.js","sourceRoot":"","sources":["../../src/_internal/rule-catalog.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rules-registry.d.ts","sourceRoot":"","sources":["../../src/_internal/rules-registry.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"rules-registry.d.ts","sourceRoot":"","sources":["../../src/_internal/rules-registry.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAwF9C,kEAAkE;AAClE,MAAM,MAAM,YAAY,GAAG,QAAQ,CAAC,UAAU,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;AAErE,gFAAgF;AAChF,MAAM,MAAM,uBAAuB,GAAG,UAAU,MAAM,EAAE,CAAC;AAoGzD,6DAA6D;AAC7D,eAAO,MAAM,aAAa,EAAE,QAAQ,CAChC,MAAM,CAAC,uBAAuB,EAAE,YAAY,CAAC,CACzB,CAAC;AAEzB,eAAe,aAAa,CAAC"}
|
|
@@ -37,8 +37,11 @@ import preferTsExtrasSafeCastToRule from "../rules/prefer-ts-extras-safe-cast-to
|
|
|
37
37
|
import preferTsExtrasSetHasRule from "../rules/prefer-ts-extras-set-has.js";
|
|
38
38
|
import preferTsExtrasStringSplitRule from "../rules/prefer-ts-extras-string-split.js";
|
|
39
39
|
import preferTypeFestAbstractConstructorRule from "../rules/prefer-type-fest-abstract-constructor.js";
|
|
40
|
+
import preferTypeFestAndAllRule from "../rules/prefer-type-fest-and-all.js";
|
|
41
|
+
import preferTypeFestArrayLengthRule from "../rules/prefer-type-fest-array-length.js";
|
|
40
42
|
import preferTypeFestArrayableRule from "../rules/prefer-type-fest-arrayable.js";
|
|
41
43
|
import preferTypeFestAsyncReturnTypeRule from "../rules/prefer-type-fest-async-return-type.js";
|
|
44
|
+
import preferTypeFestConditionalPickDeepRule from "../rules/prefer-type-fest-conditional-pick-deep.js";
|
|
42
45
|
import preferTypeFestConditionalPickRule from "../rules/prefer-type-fest-conditional-pick.js";
|
|
43
46
|
import preferTypeFestConstructorRule from "../rules/prefer-type-fest-constructor.js";
|
|
44
47
|
import preferTypeFestExceptRule from "../rules/prefer-type-fest-except.js";
|
|
@@ -49,10 +52,14 @@ import preferTypeFestJsonObjectRule from "../rules/prefer-type-fest-json-object.
|
|
|
49
52
|
import preferTypeFestJsonPrimitiveRule from "../rules/prefer-type-fest-json-primitive.js";
|
|
50
53
|
import preferTypeFestJsonValueRule from "../rules/prefer-type-fest-json-value.js";
|
|
51
54
|
import preferTypeFestKeysOfUnionRule from "../rules/prefer-type-fest-keys-of-union.js";
|
|
55
|
+
import preferTypeFestLessThanOrEqualRule from "../rules/prefer-type-fest-less-than-or-equal.js";
|
|
56
|
+
import preferTypeFestLessThanRule from "../rules/prefer-type-fest-less-than.js";
|
|
52
57
|
import preferTypeFestLiteralUnionRule from "../rules/prefer-type-fest-literal-union.js";
|
|
53
58
|
import preferTypeFestMergeExclusiveRule from "../rules/prefer-type-fest-merge-exclusive.js";
|
|
54
59
|
import preferTypeFestNonEmptyTupleRule from "../rules/prefer-type-fest-non-empty-tuple.js";
|
|
55
60
|
import preferTypeFestOmitIndexSignatureRule from "../rules/prefer-type-fest-omit-index-signature.js";
|
|
61
|
+
import preferTypeFestOptionalRule from "../rules/prefer-type-fest-optional.js";
|
|
62
|
+
import preferTypeFestOrAllRule from "../rules/prefer-type-fest-or-all.js";
|
|
56
63
|
import preferTypeFestPartialDeepRule from "../rules/prefer-type-fest-partial-deep.js";
|
|
57
64
|
import preferTypeFestPrimitiveRule from "../rules/prefer-type-fest-primitive.js";
|
|
58
65
|
import preferTypeFestPromisableRule from "../rules/prefer-type-fest-promisable.js";
|
|
@@ -70,6 +77,8 @@ import preferTypeFestSetRequiredRule from "../rules/prefer-type-fest-set-require
|
|
|
70
77
|
import preferTypeFestSimplifyRule from "../rules/prefer-type-fest-simplify.js";
|
|
71
78
|
import preferTypeFestTaggedBrandsRule from "../rules/prefer-type-fest-tagged-brands.js";
|
|
72
79
|
import preferTypeFestTupleOfRule from "../rules/prefer-type-fest-tuple-of.js";
|
|
80
|
+
import preferTypeFestUnionMemberRule from "../rules/prefer-type-fest-union-member.js";
|
|
81
|
+
import preferTypeFestUnionToTupleRule from "../rules/prefer-type-fest-union-to-tuple.js";
|
|
73
82
|
import preferTypeFestUnknownArrayRule from "../rules/prefer-type-fest-unknown-array.js";
|
|
74
83
|
import preferTypeFestUnknownMapRule from "../rules/prefer-type-fest-unknown-map.js";
|
|
75
84
|
import preferTypeFestUnknownRecordRule from "../rules/prefer-type-fest-unknown-record.js";
|
|
@@ -117,9 +126,12 @@ const typefestRuleRegistry = {
|
|
|
117
126
|
"prefer-ts-extras-set-has": preferTsExtrasSetHasRule,
|
|
118
127
|
"prefer-ts-extras-string-split": preferTsExtrasStringSplitRule,
|
|
119
128
|
"prefer-type-fest-abstract-constructor": preferTypeFestAbstractConstructorRule,
|
|
129
|
+
"prefer-type-fest-and-all": preferTypeFestAndAllRule,
|
|
130
|
+
"prefer-type-fest-array-length": preferTypeFestArrayLengthRule,
|
|
120
131
|
"prefer-type-fest-arrayable": preferTypeFestArrayableRule,
|
|
121
132
|
"prefer-type-fest-async-return-type": preferTypeFestAsyncReturnTypeRule,
|
|
122
133
|
"prefer-type-fest-conditional-pick": preferTypeFestConditionalPickRule,
|
|
134
|
+
"prefer-type-fest-conditional-pick-deep": preferTypeFestConditionalPickDeepRule,
|
|
123
135
|
"prefer-type-fest-constructor": preferTypeFestConstructorRule,
|
|
124
136
|
"prefer-type-fest-except": preferTypeFestExceptRule,
|
|
125
137
|
"prefer-type-fest-if": preferTypeFestIfRule,
|
|
@@ -129,10 +141,14 @@ const typefestRuleRegistry = {
|
|
|
129
141
|
"prefer-type-fest-json-primitive": preferTypeFestJsonPrimitiveRule,
|
|
130
142
|
"prefer-type-fest-json-value": preferTypeFestJsonValueRule,
|
|
131
143
|
"prefer-type-fest-keys-of-union": preferTypeFestKeysOfUnionRule,
|
|
144
|
+
"prefer-type-fest-less-than": preferTypeFestLessThanRule,
|
|
145
|
+
"prefer-type-fest-less-than-or-equal": preferTypeFestLessThanOrEqualRule,
|
|
132
146
|
"prefer-type-fest-literal-union": preferTypeFestLiteralUnionRule,
|
|
133
147
|
"prefer-type-fest-merge-exclusive": preferTypeFestMergeExclusiveRule,
|
|
134
148
|
"prefer-type-fest-non-empty-tuple": preferTypeFestNonEmptyTupleRule,
|
|
135
149
|
"prefer-type-fest-omit-index-signature": preferTypeFestOmitIndexSignatureRule,
|
|
150
|
+
"prefer-type-fest-optional": preferTypeFestOptionalRule,
|
|
151
|
+
"prefer-type-fest-or-all": preferTypeFestOrAllRule,
|
|
136
152
|
"prefer-type-fest-partial-deep": preferTypeFestPartialDeepRule,
|
|
137
153
|
"prefer-type-fest-primitive": preferTypeFestPrimitiveRule,
|
|
138
154
|
"prefer-type-fest-promisable": preferTypeFestPromisableRule,
|
|
@@ -150,6 +166,8 @@ const typefestRuleRegistry = {
|
|
|
150
166
|
"prefer-type-fest-simplify": preferTypeFestSimplifyRule,
|
|
151
167
|
"prefer-type-fest-tagged-brands": preferTypeFestTaggedBrandsRule,
|
|
152
168
|
"prefer-type-fest-tuple-of": preferTypeFestTupleOfRule,
|
|
169
|
+
"prefer-type-fest-union-member": preferTypeFestUnionMemberRule,
|
|
170
|
+
"prefer-type-fest-union-to-tuple": preferTypeFestUnionToTupleRule,
|
|
153
171
|
"prefer-type-fest-unknown-array": preferTypeFestUnknownArrayRule,
|
|
154
172
|
"prefer-type-fest-unknown-map": preferTypeFestUnknownMapRule,
|
|
155
173
|
"prefer-type-fest-unknown-record": preferTypeFestUnknownRecordRule,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rules-registry.js","sourceRoot":"","sources":["../../src/_internal/rules-registry.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"rules-registry.js","sourceRoot":"","sources":["../../src/_internal/rules-registry.ts"],"names":[],"mappings":"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"}
|