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

Fix eslint issues #63

Merged
merged 2 commits into from
Jun 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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