Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza committed Oct 22, 2024
1 parent 782d598 commit 763f5ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true
"es2020": true
},
"parserOptions": {
"ecmaVersion": 8,
"ecmaVersion": 2020,
"sourceType": "module",
"requireConfigFile": false
},
Expand Down
2 changes: 1 addition & 1 deletion spec/support/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async function startServer(config = {}) {

// Compose server config
const serverConfig = Object.assign({}, config, defaultConfig);

// Launch parse server
const parseServer = ParseServer(serverConfig);
await parseServer.start();
Expand Down

0 comments on commit 763f5ef

Please sign in to comment.