Skip to content

Commit

Permalink
chore(deps): remove prettier-ignore (#4191)
Browse files Browse the repository at this point in the history
fixed by deps upgrade
  • Loading branch information
yaacovCR authored Sep 12, 2024
1 parent e614f8f commit 2b42a70
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/type/definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -718,10 +718,10 @@ export class GraphQLObjectType<TSource = any, TContext = any> {
this.extensions = toObjMap(config.extensions);
this.astNode = config.astNode;
this.extensionASTNodes = config.extensionASTNodes ?? [];

// prettier-ignore
// FIXME: blocked by https://github.com/prettier/prettier/issues/14625
this._fields = (defineFieldMap<TSource, TContext>).bind(undefined, config.fields);
this._fields = (defineFieldMap<TSource, TContext>).bind(
undefined,
config.fields,
);
this._interfaces = defineInterfaces.bind(undefined, config.interfaces);
}

Expand Down Expand Up @@ -1035,10 +1035,10 @@ export class GraphQLInterfaceType<TSource = any, TContext = any> {
this.extensions = toObjMap(config.extensions);
this.astNode = config.astNode;
this.extensionASTNodes = config.extensionASTNodes ?? [];

// prettier-ignore
// FIXME: blocked by https://github.com/prettier/prettier/issues/14625
this._fields = (defineFieldMap<TSource, TContext>).bind(undefined, config.fields);
this._fields = (defineFieldMap<TSource, TContext>).bind(
undefined,
config.fields,
);
this._interfaces = defineInterfaces.bind(undefined, config.interfaces);
}

Expand Down

0 comments on commit 2b42a70

Please sign in to comment.