File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -511,9 +511,8 @@ overrides:
511
511
' @typescript-eslint/adjacent-overload-signatures ' : error
512
512
' @typescript-eslint/array-type ' : [error, { default: generic }]
513
513
' @typescript-eslint/await-thenable ' : error
514
- ' @typescript-eslint/ban-ts-comment ' :
515
- [error, { 'ts-expect-error' : ' allow-with-description' }]
516
- ' @typescript-eslint/ban-tslint-comment ' : off # TODO error
514
+ ' @typescript-eslint/ban-ts-comment ' : [error, { 'ts-expect-error': false }]
515
+ ' @typescript-eslint/ban-tslint-comment ' : error
517
516
' @typescript-eslint/ban-types ' : error
518
517
' @typescript-eslint/class-literal-property-style ' : off
519
518
' @typescript-eslint/consistent-type-assertions ' :
Original file line number Diff line number Diff line change @@ -241,15 +241,13 @@ export function isNullableType(type: any): type is GraphQLNullableType;
241
241
242
242
export function assertNullableType ( type : any ) : GraphQLNullableType ;
243
243
244
- // FIXME Disabled because of https://github.com/yaacovCR/graphql-tools-fork/issues/40#issuecomment-586671219
245
- // tslint:disable:unified-signatures
246
244
export function getNullableType ( type : undefined ) : undefined ;
247
245
export function getNullableType < T extends GraphQLNullableType > ( type : T ) : T ;
248
246
export function getNullableType < T extends GraphQLNullableType > (
247
+ // FIXME Disabled because of https://github.com/yaacovCR/graphql-tools-fork/issues/40#issuecomment-586671219
249
248
// eslint-disable-next-line @typescript-eslint/unified-signatures
250
249
type : GraphQLNonNull < T > ,
251
250
) : T ;
252
- // tslint:enable:unified-signatures
253
251
254
252
/**
255
253
* These named types do not include modifiers like List or NonNull.
You can’t perform that action at this time.
0 commit comments