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

Commit 2adadbc

Browse files
author
Jan Krems
committed
style: Fix eslint issues
1 parent 466a73b commit 2adadbc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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

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)