-
Notifications
You must be signed in to change notification settings - Fork 1
/
devcontainer.json
43 lines (43 loc) · 1.31 KB
/
devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "lockerai",
"workspaceFolder": "/workspaces/lockerai/",
"dockerComposeFile": ["../docker/docker-compose.development.yaml"],
"service": "app",
"customizations": {
"vscode": {
"extensions": [
"adam-bender.commit-message-editor",
"bierner.color-info",
"bradlc.vscode-tailwindcss",
"christian-kohler.path-intellisense",
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"ecmel.vscode-html-css",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"figma.figma-vscode-extension",
"formulahendry.auto-complete-tag",
"github.copilot",
"github.copilot-labs",
"github.vscode-github-actions",
"github.vscode-pull-request-github",
"graphql.vscode-graphql",
"gruntfuggly.todo-tree",
"hbenl.vscode-test-explorer",
"jock.svg",
"mikestead.dotenv",
"ms-ossdata.vscode-postgresql",
"orta.vscode-jest",
"prisma.prisma",
"Prettier-SQL.SQLFlavourOverride",
"stylelint.vscode-stylelint",
"usernamehw.errorlens",
"vincaslt.highlight-matching-tag",
"visualstudioexptteam.vscodeintellicode",
"wix.vscode-import-cost",
"wmaurer.change-case",
"yoavbls.pretty-ts-errors"
]
}
}
}