Skip to content

Commit c7921c9

Browse files
committed
fix code stype with lint
1 parent 78f160d commit c7921c9

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

packages/jupyterlab-lsp/src/adapters/adapter.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ export abstract class WidgetAdapter<T extends IDocumentWidget> {
128128
this.status_message = new StatusMessage();
129129
this.isConnected = false;
130130
this.console = extension.console.scope('WidgetAdapter');
131-
this.trans = (extension.translator || nullTranslator).load('jupyterlab-lsp');
131+
this.trans = (extension.translator || nullTranslator).load(
132+
'jupyterlab-lsp'
133+
);
132134

133135
// set up signal connections
134136
this.widget.context.saveState.connect(this.on_save_state, this);

packages/jupyterlab-lsp/src/feature.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ISettingRegistry } from '@jupyterlab/settingregistry';
1010
import { IDocumentWidget } from '@jupyterlab/docregistry';
1111
import { LabIcon } from '@jupyterlab/ui-components';
1212
import { Signal } from '@lumino/signaling';
13-
import { TranslationBundle } from '@jupyterlab/translation'
13+
import { TranslationBundle } from '@jupyterlab/translation';
1414

1515
export interface IFeatureCommand {
1616
/**

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ const COMMANDS = (trans: TranslationBundle): IFeatureCommand[] => [
104104
];
105105

106106
export class RenameCM extends CodeMirrorIntegration {
107-
108-
public setTrans(trans: TranslationBundle){
107+
public setTrans(trans: TranslationBundle) {
109108
this.trans = trans;
110109
}
111110

0 commit comments

Comments
 (0)