@@ -63,7 +63,7 @@ export function mergeArraysTypeFields(
6363 if ( argType === 'FilterOperatorsOptsMap' ) {
6464 merged = mergeFilterOperatorsOptsMap ( baseField , merged ) ;
6565
66- continue ; // eslint-disable-line no-continue
66+ continue ;
6767 }
6868
6969 merged = mergePrimitiveTypeFields ( baseField , childField , argType ) ;
@@ -86,19 +86,19 @@ export function mergeMapTypeFields(
8686 for ( const argOptType in argOptsTypes ) {
8787 if ( argOptsTypes . hasOwnProperty ( argOptType ) ) {
8888 if ( baseField [ argOptType ] === undefined ) {
89- continue ; // eslint-disable-line no-continue
89+ continue ;
9090 }
9191
9292 if ( childField === undefined ) {
93- childField = { } ; // eslint-disable-line no-param-reassign
93+ childField = { } ;
9494 }
9595
9696 if ( argOptType === 'FilterOperatorsOptsMap' ) {
9797 merged [ argOptType ] = mergeFilterOperatorsOptsMap (
9898 baseField [ argOptType ] ,
9999 merged [ argOptType ]
100100 ) ;
101- continue ; // eslint-disable-line no-continue
101+ continue ;
102102 }
103103
104104 merged [ argOptType ] = mergePrimitiveTypeFields (
@@ -150,13 +150,13 @@ export function mergeTypeConverterResolverOpts(
150150
151151 // e.g. { findMany: ... findById: ... } baseResolverOpt = findById
152152 if ( baseResolverArgs === undefined ) {
153- continue ; // eslint-disable-line no-continue
153+ continue ;
154154 }
155155
156156 // if nothing set for child resolver set base
157157 if ( baseResolverArgs === false && childResolverArgs === undefined ) {
158158 mergedTypeConverterResolverOpts [ baseResolverOpt ] = false ;
159- continue ; // eslint-disable-line no-continue
159+ continue ;
160160 }
161161
162162 // set to empty object in-order to reference
@@ -175,7 +175,7 @@ export function mergeTypeConverterResolverOpts(
175175
176176 // e.g. {limit: ...} baseResolverArg = limit
177177 if ( baseResolverArgs [ baseResolverArg ] === undefined ) {
178- continue ; // eslint-disable-line no-continue
178+ continue ;
179179 }
180180
181181 mergedResolverArgs [ baseResolverArg ] = mergePrimitiveTypeFields (
0 commit comments