Skip to content

Commit f6487d7

Browse files
committed
Fix formatting lint
1 parent 9c48460 commit f6487d7

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

types/codemirror/codemirror-tests.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@ const c = CodeMirror.findModeByFileName('foo');
77
const d = CodeMirror.findModeByName('foo');
88
declare var editor: CodeMirror.Editor;
99
editor.on('cut', (instance, event) => {
10-
event.clipboardData
11-
})
10+
event.clipboardData;
11+
});
1212
editor.on('copy', (instance, event) => {
13-
event.clipboardData
14-
})
13+
event.clipboardData;
14+
});
1515
editor.on('paste', (instance, event) => {
16-
event.clipboardData
17-
})
18-
16+
event.clipboardData;
17+
});

0 commit comments

Comments
 (0)