eslint-plugin-typefest 1.0.3 → 1.0.5
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 +18 -2
- 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 +866 -36
- 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 +32 -25
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
|
|
|
@@ -32,7 +32,7 @@ npm install --save-dev eslint-plugin-typefest typescript
|
|
|
32
32
|
|
|
33
33
|
- **Supported ESLint versions:** `9.x` and `10.x`
|
|
34
34
|
- **Config system:** Flat Config only (`eslint.config.*`)
|
|
35
|
-
- **Node.js runtime:** `>=
|
|
35
|
+
- **Node.js runtime:** `>=22.0.0`
|
|
36
36
|
|
|
37
37
|
## Quick start (flat config)
|
|
38
38
|
|
|
@@ -207,9 +207,12 @@ autofix behavior.
|
|
|
207
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
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
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) |
|
|
210
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) |
|
|
211
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) |
|
|
212
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) |
|
|
213
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) |
|
|
214
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) |
|
|
215
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,10 +222,14 @@ autofix behavior.
|
|
|
219
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) |
|
|
220
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) |
|
|
221
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) |
|
|
222
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) |
|
|
223
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) |
|
|
224
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) |
|
|
225
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) |
|
|
226
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) |
|
|
227
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) |
|
|
228
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) |
|
|
@@ -240,6 +247,8 @@ autofix behavior.
|
|
|
240
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) |
|
|
241
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) |
|
|
242
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) |
|
|
243
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) |
|
|
244
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) |
|
|
245
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) |
|
|
@@ -248,17 +257,23 @@ autofix behavior.
|
|
|
248
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) |
|
|
249
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) |
|
|
250
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) |
|
|
260
|
+
|
|
251
261
|
## Contributors ✨
|
|
252
262
|
|
|
253
263
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
264
|
+
|
|
254
265
|
[](#contributors-)
|
|
266
|
+
|
|
255
267
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
256
268
|
|
|
257
269
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
|
258
270
|
|
|
259
271
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
272
|
+
|
|
260
273
|
<!-- prettier-ignore-start -->
|
|
274
|
+
|
|
261
275
|
<!-- markdownlint-disable -->
|
|
276
|
+
|
|
262
277
|
<table>
|
|
263
278
|
<tbody>
|
|
264
279
|
<tr>
|
|
@@ -274,6 +289,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
274
289
|
</table>
|
|
275
290
|
|
|
276
291
|
<!-- markdownlint-restore -->
|
|
292
|
+
|
|
277
293
|
<!-- prettier-ignore-end -->
|
|
278
294
|
|
|
279
295
|
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
@@ -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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"}
|