Skip to content

Commit 6b40e53

Browse files
committed
chore: lint
1 parent 86061a6 commit 6b40e53

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

server/gritty.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ module.exports = (options = {}) => {
4444
const router = Router();
4545
const {prefix = '/gritty'} = options;
4646

47-
router.route(`${prefix}/*`).get(terminalFn(options))
47+
router
48+
.route(`${prefix}/*`)
49+
.get(terminalFn(options))
4850
.get(staticFn);
4951

5052
return router;

test/client/gritty.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ mock('@xterm/xterm-addong-webl', {
4646
});
4747

4848
const gritty = require('../../client/gritty');
49+
4950
const {
5051
_onConnect,
5152
_onDisconnect,

0 commit comments

Comments
 (0)