Skip to content

Commit 474180e

Browse files
committed
lint
1 parent b9e5f32 commit 474180e

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# jupyter_floating_chat
22

3-
[![Github Actions Status](https://github.com/jupyter-jupyter-floating-chatoating-chat/workflows/Build/badge.svg)](https://github.com/jupyter-ai-contrib/jupyter-floating-chat/actions/workflows/build.yml)
3+
[![Github Actions Status](https://github.com/jupyter-ai-contrib/jupyter-floating-chat/workflows/Build/badge.svg)](https://github.com/jupyter-ai-contrib/jupyter-floating-chat/actions/workflows/build.yml)
44

55
A JupyterLab extension to add a floating chat.
66

src/index.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,16 @@ const plugin: JupyterFrontEndPlugin<IFloatingInputOptions> = {
8686
settingRegistry
8787
.load(plugin.id)
8888
.then(settings => {
89-
console.log('jupyter-floating-chat settings loaded:', settings.composite);
89+
console.log(
90+
'jupyter-floating-chat settings loaded:',
91+
settings.composite
92+
);
9093
})
9194
.catch(reason => {
92-
console.error('Failed to load settings for jupyter-floating-chat.', reason);
95+
console.error(
96+
'Failed to load settings for jupyter-floating-chat.',
97+
reason
98+
);
9399
});
94100
}
95101

ui-tests/tests/floating_chat.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ test('should emit an activation console message', async ({ page }) => {
1616
await page.goto();
1717

1818
expect(
19-
logs.filter(s => s === 'JupyterLab extension jupyter-floating-chat is activated!')
19+
logs.filter(
20+
s => s === 'JupyterLab extension jupyter-floating-chat is activated!'
21+
)
2022
).toHaveLength(1);
2123
});

0 commit comments

Comments
 (0)