Run Prettier JS #2 (#6796)

This commit is contained in:
Diamond Lewis
2020-07-13 17:13:08 -05:00
committed by GitHub
parent e6a6354b29
commit 142eaa71bd
40 changed files with 323 additions and 330 deletions

View File

@@ -46,7 +46,7 @@ class ParseGraphQLServer {
config: req.config,
auth: req.auth,
},
formatError: (error) => {
formatError: error => {
// Allow to console.log here to debug
return error;
},
@@ -91,7 +91,7 @@ class ParseGraphQLServer {
app.use(this.config.graphQLPath, handleParseErrors);
app.use(
this.config.graphQLPath,
graphqlExpress(async (req) => await this._getGraphQLOptions(req))
graphqlExpress(async req => await this._getGraphQLOptions(req))
);
}