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

Commit 035ea84

Browse files
authored
Merge pull request #63 from nodejs/bump-eslint
Fix eslint issues
2 parents 466a73b + a6d2f88 commit 035ea84

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ env:
55
es6: true
66

77
parserOptions:
8-
ecmaVersion: 2016
8+
ecmaVersion: 2017
99

1010
rules:
1111
# Possible Errors

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,3 @@ A simple bug fix:
179179
```
180180
fix: Handle multi-byte characters in search logic
181181
```
182-

test/cli/invalid-args.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test('launch w/ invalid host:port', (t) => {
2828
});
2929

3030
test('launch w/ unavailable port', async (t) => {
31-
const blocker = createServer(socket => socket.end());
31+
const blocker = createServer((socket) => socket.end());
3232
const port = await new Promise((resolve, reject) => {
3333
blocker.on('error', reject);
3434
blocker.listen(0, '127.0.0.1', () => resolve(blocker.address().port));

0 commit comments

Comments
 (0)