Skip to content

Commit a07493b

Browse files
committed
Make trail comma placement more consistent
1 parent a033219 commit a07493b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/__tests__/starWarsSchema.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ var characterInterface = new GraphQLInterfaceType({
134134
return droidType;
135135
}
136136
return null;
137-
},
137+
}
138138
});
139139

140140
/**
@@ -215,7 +215,7 @@ var droidType = new GraphQLObjectType({
215215
primaryFunction: {
216216
type: GraphQLString,
217217
description: 'The primary function of the droid.'
218-
}
218+
},
219219
}),
220220
interfaces: [characterInterface]
221221
});
@@ -250,7 +250,7 @@ var queryType = new GraphQLObjectType({
250250
type: droidType,
251251
args: {id: { name: 'id', type: new GraphQLNonNull(GraphQLString)}},
252252
resolve: (root, {id}) => starWarsData.Droids[id]
253-
}
253+
},
254254
})
255255
});
256256

0 commit comments

Comments
 (0)