Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
Merge pull request #63 from nodejs/bump-eslint
Browse files Browse the repository at this point in the history
Fix eslint issues
  • Loading branch information
jkrems authored Jun 1, 2018
2 parents 466a73b + a6d2f88 commit 035ea84
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:
es6: true

parserOptions:
ecmaVersion: 2016
ecmaVersion: 2017

rules:
# Possible Errors
Expand Down
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,3 @@ A simple bug fix:
```
fix: Handle multi-byte characters in search logic
```

2 changes: 1 addition & 1 deletion test/cli/invalid-args.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ test('launch w/ invalid host:port', (t) => {
});

test('launch w/ unavailable port', async (t) => {
const blocker = createServer(socket => socket.end());
const blocker = createServer((socket) => socket.end());
const port = await new Promise((resolve, reject) => {
blocker.on('error', reject);
blocker.listen(0, '127.0.0.1', () => resolve(blocker.address().port));
Expand Down

0 comments on commit 035ea84

Please sign in to comment.