Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8d55188

Browse files
committed
fix eslint disables
1 parent c8bef66 commit 8d55188

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

api/server.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,8 @@ export function run({
132132
const server = createServer(app);
133133

134134
server.listen(port, () => {
135-
// eslint-disable-line no-console
136-
console.log(`API Server is now running on http://localhost:${port}`);
137-
console.log(`API Subscriptions server is now running on ws://localhost:${port}${SUBSCRIPTIONS_PATH}`);
135+
console.log(`API Server is now running on http://localhost:${port}`); // eslint-disable-line no-console
136+
console.log(`API Subscriptions server is now running on ws://localhost:${port}${SUBSCRIPTIONS_PATH}`); // eslint-disable-line no-console
138137
});
139138

140139
// eslint-disable-next-line

0 commit comments

Comments
 (0)