Skip to content

Commit

Permalink
Lint autofixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Sep 27, 2023
1 parent 25a2dd8 commit a935228
Showing 1 changed file with 42 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,50 @@ const ExtendPlugin = makeExtendSchemaPlugin({
},
Scalar1: new GraphQLScalarType({
name: "SomethingElse",
serialize() {
return 1;
},
parseLiteral() {
return 1;
},
parseValue() {
return 1;
},
serialize: EXPORTABLE(
() =>
function serialize() {
return 1;
},
[],
),
parseLiteral: EXPORTABLE(
() =>
function parseLiteral() {
return 1;
},
[],
),
parseValue: EXPORTABLE(
() =>
function parseValue() {
return 1;
},
[],
),
}),
Scalar2: {
serialize() {
return 2;
},
parseLiteral() {
return 2;
},
parseValue() {
return 2;
},
serialize: EXPORTABLE(
() =>
function serialize() {
return 2;
},
[],
),
parseLiteral: EXPORTABLE(
() =>
function parseLiteral() {
return 2;
},
[],
),
parseValue: EXPORTABLE(
() =>
function parseValue() {
return 2;
},
[],
),
},
},
});
Expand Down

0 comments on commit a935228

Please sign in to comment.