File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -481,7 +481,7 @@ overrides:
481
481
' @typescript-eslint/no-type-alias ' : off # TODO consider
482
482
' @typescript-eslint/no-unnecessary-condition ' : error
483
483
' @typescript-eslint/no-unnecessary-qualifier ' : error
484
- ' @typescript-eslint/no-unnecessary-type-arguments ' : off # TODO error
484
+ ' @typescript-eslint/no-unnecessary-type-arguments ' : error
485
485
' @typescript-eslint/no-unnecessary-type-assertion ' : error
486
486
' @typescript-eslint/no-unused-vars-experimental ' : off
487
487
' @typescript-eslint/no-var-requires ' : error
Original file line number Diff line number Diff line change @@ -112,11 +112,10 @@ export interface IntrospectionNonNullTypeRef<
112
112
}
113
113
114
114
export type IntrospectionTypeRef =
115
- | IntrospectionNamedTypeRef < IntrospectionType >
115
+ | IntrospectionNamedTypeRef
116
116
| IntrospectionListTypeRef < any >
117
117
| IntrospectionNonNullTypeRef <
118
- | IntrospectionNamedTypeRef < IntrospectionType >
119
- | IntrospectionListTypeRef < any >
118
+ IntrospectionNamedTypeRef | IntrospectionListTypeRef < any >
120
119
> ;
121
120
122
121
export type IntrospectionOutputTypeRef =
Original file line number Diff line number Diff line change @@ -204,11 +204,10 @@ export type IntrospectionNonNullTypeRef<
204
204
| } ;
205
205
206
206
export type IntrospectionTypeRef =
207
- | IntrospectionNamedTypeRef < IntrospectionType >
208
- | IntrospectionListTypeRef < IntrospectionTypeRef >
207
+ | IntrospectionNamedTypeRef < >
208
+ | IntrospectionListTypeRef < >
209
209
| IntrospectionNonNullTypeRef <
210
- | IntrospectionNamedTypeRef < IntrospectionType >
211
- | IntrospectionListTypeRef < IntrospectionTypeRef > ,
210
+ IntrospectionNamedTypeRef < > | IntrospectionListTypeRef < > ,
212
211
> ;
213
212
214
213
export type IntrospectionOutputTypeRef =
You can’t perform that action at this time.
0 commit comments