Skip to content

Commit 2e43577

Browse files
committed
linting
1 parent 89102dd commit 2e43577

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

packages/jupyterlab-go-to-definition/src/jumpers/jumper.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@ export abstract class CodeJumper {
197197
}
198198

199199
public global_jump(position: IGlobalJump, is_symlink = false) {
200-
let document_widget = this.document_manager.openOrReveal(position.contents_path);
200+
let document_widget = this.document_manager.openOrReveal(
201+
position.contents_path
202+
);
201203

202204
document_widget.revealed
203205
.then(() => {

packages/jupyterlab-lsp/src/features/jump_to.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,10 @@ export class CMJumpToDefinition extends CodeMirrorIntegration {
136136
}
137137

138138
this.jumper.global_jump(
139-
{ contents_path: URLExt.join('.lsp_symlink', contents_path), ...jump_data },
139+
{
140+
contents_path: URLExt.join('.lsp_symlink', contents_path),
141+
...jump_data
142+
},
140143
true
141144
);
142145
}

0 commit comments

Comments
 (0)