You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [no-unnecessary-type-parameters] add FAQ section
* wording
* wording
* update admonition link
* test case
* stuf
* prettierer
* test case formatting
* log
* mention 9735
* explain the equal false positives a little better
* add implicit return type FAQ
Copy file name to clipboardExpand all lines: packages/eslint-plugin/docs/rules/no-unnecessary-type-parameters.mdx
+122-1Lines changed: 122 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ At best unnecessary type parameters make code harder to read.
19
19
At worst they can be used to disguise unsafe type assertions.
20
20
21
21
:::warning
22
-
This rule was recently added, and has a surprising amount of hidden complexity compared to most of our rules. If you encounter unexpected behavior with it, please check closely the [Limitations](#limitations)section below and our [issue tracker](https://github.com/typescript-eslint/typescript-eslint/issues?q=is%3Aissue+no-unnecessary-type-parameters).
22
+
This rule was recently added, and has a surprising amount of hidden complexity compared to most of our rules. If you encounter unexpected behavior with it, please check closely the [Limitations](#limitations)and [FAQ](#faq) sections below and our [issue tracker](https://github.com/typescript-eslint/typescript-eslint/issues?q=is%3Aissue+no-unnecessary-type-parameters).
23
23
If you don't see your case covered, please [reach out to us](https://typescript-eslint.io/contributing/issues)!
24
24
:::
25
25
@@ -87,6 +87,127 @@ This is because the type parameter `T` relates multiple methods in the `T[]` tog
87
87
Therefore, this rule won't report on type parameters used as a type argument.
88
88
That includes type arguments given to global types such as `Array` (including the `T[]` shorthand and in tuples), `Map`, and `Set`.
89
89
90
+
## FAQ
91
+
92
+
### The return type is only used as an input, so why isn't the rule reporting?
93
+
94
+
One common reason that this might be the case is when the return type is not specified explicitly.
95
+
The rule uses uses type information to count implicit usages of the type parameter in the function signature, including in the inferred return type.
96
+
For example, the following function...
97
+
98
+
```ts
99
+
function identity<T>(arg:T) {
100
+
returnarg;
101
+
}
102
+
```
103
+
104
+
...implicitly has a return type of `T`. Therefore, the type parameter `T` is used twice, and the rule will not report this function.
105
+
106
+
For other reasons the rule might not be reporting, be sure to check the [Limitations section](#limitations) and other FAQs.
107
+
108
+
### I'm using the type parameter inside the function, so why is the rule reporting?
109
+
110
+
You might be surprised to that the rule reports on a function like this:
111
+
112
+
```ts
113
+
function log<Textendsstring>(string1:T):void {
114
+
const string2:T=string1;
115
+
console.log(string2);
116
+
}
117
+
```
118
+
119
+
After all, the type parameter `T` relates the input `string1` and the local variable `string2`, right?
120
+
However, this usage is unnecessary, since we can achieve the same results by replacing all usages of the type parameter with its constraint.
121
+
That is to say, the function can always be rewritten as:
122
+
123
+
```ts
124
+
function log(string1:string):void {
125
+
const string2:string=string1;
126
+
console.log(string2);
127
+
}
128
+
```
129
+
130
+
Therefore, this rule only counts usages of a type parameter in the _signature_ of a function, method, or class, but not in the implementation. See also [#9735](https://github.com/typescript-eslint/typescript-eslint/issues/9735)
131
+
132
+
### Why am I getting TypeScript errors saying "Object literal may only specify known properties" after removing an unnecessary type parameter?
133
+
134
+
Suppose you have a situation like the following, which will trigger the rule to report.
135
+
136
+
```ts
137
+
interfaceSomeProperties {
138
+
foo:string;
139
+
}
140
+
141
+
// T is only used once, so the rule will report.
142
+
function serialize<TextendsSomeProperties>(x:T):string {
This is because TypeScript figures it's _usually_ an error to explicitly provide excess properties in a location that expects a specific type.
161
+
See [the TypeScript handbook's section on excess property checks](https://www.typescriptlang.org/docs/handbook/2/objects.html#excess-property-checks) for further discussion.
162
+
163
+
To resolve this, you have two approaches to choose from.
164
+
165
+
1. If it doesn't make sense to accept excess properties in your function, you'll want to fix the errors at the call sites. Usually, you can simply remove any excess properties where the function is called.
166
+
2. Otherwise, if you do want your function to accept excess properties, you can modify the parameter type in order to allow excess properties explicitly by using an [index signature](https://www.typescriptlang.org/docs/handbook/2/objects.html#index-signatures):
167
+
168
+
```ts
169
+
interfaceSomeProperties {
170
+
foo:string;
171
+
172
+
// This allows any other properties.
173
+
// You may wish to make these types more specific according to your use case.
Which solution is appropriate is a case-by-case decision, depending on the intended use case of your function.
186
+
187
+
### I have a complex scenario that is reported by the rule, but I can't see how to remove the type parameter. What should I do?
188
+
189
+
Sometimes, you may be able to rewrite the code by reaching for some niche TypeScript features, such as [the `NoInfer<T>` utility type](https://www.typescriptlang.org/docs/handbook/utility-types.html#noinfertype) (see [#9751](https://github.com/typescript-eslint/typescript-eslint/issues/9751)).
190
+
191
+
But, quite possibly, you've hit an edge case where the type is being used in a subtle way that the rule doesn't account for.
192
+
For example, the following arcane code is a way of testing whether two types are equal, and will be reported by the rule (see [#9709](https://github.com/typescript-eslint/typescript-eslint/issues/9709)):
In this case, the function types created within the `Equal` type are never expected to be assigned to; they're just created for the purpose of type system manipulations.
205
+
This usage is not what the rule is intended to analyze.
206
+
207
+
Use eslint-disable comments as appropriate to suppress the rule in these kinds of cases.
208
+
209
+
{/* TODO - include an FAQ entry regarding instantiation expressions once the conversation in https://github.com/typescript-eslint/typescript-eslint/pull/9536#discussion_r1705850744 is done */}
210
+
90
211
## When Not To Use It
91
212
92
213
This rule will report on functions that use type parameters solely to test types, for example:
0 commit comments