Skip to content

Commit da4c664

Browse files
committed
fix lint job
1 parent 417d72c commit da4c664

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

.devcontainer/devcontainer.json

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
33
{
4-
"name": "Node.js & TypeScript",
5-
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
4+
"name": "Node.js & TypeScript",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
77

8-
// Use 'forwardPorts' to make a list of ports inside the container available locally.
9-
// "forwardPorts": [],
8+
"customizations": {
9+
"vscode": {
10+
"extensions": ["esbenp.prettier-vscode", "dbaeumer.vscode-eslint", "svelte.svelte-vscode"]
11+
}
12+
}
1013

11-
// Use 'postCreateCommand' to run commands after the container is created.
12-
// "postCreateCommand": "yarn install",
14+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
15+
// "forwardPorts": [],
1316

14-
// Configure tool-specific properties.
15-
// "customizations": {},
17+
// Use 'postCreateCommand' to run commands after the container is created.
18+
// "postCreateCommand": "yarn install",
1619

17-
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
18-
// "remoteUser": "root"
20+
// Configure tool-specific properties.
21+
// "customizations": {},
22+
23+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
24+
// "remoteUser": "root"
1925
}

src/lib/components/chat/ChatWindow.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,9 +587,9 @@
587587
{#if !messages.length}
588588
<span>Generated content may be inaccurate or false.</span>
589589
{/if}
590+
</div>
590591
</div>
591592
</div>
592-
</div>
593593
</div>
594594

595595
<style lang="postcss">

0 commit comments

Comments
 (0)