forked from dashpay/platform-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
27 lines (25 loc) · 719 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
27 lines (25 loc) · 719 Bytes
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
{
"name": "Dash Platform Tutorials",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22",
"remoteUser": "node",
"onCreateCommand": "cp -n .env.example .env",
"postCreateCommand": "npm ci",
"postAttachCommand": ".devcontainer/welcome.sh",
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"mikestead.dotenv",
"streetsidesoftware.code-spell-checker"
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tabSize": 2,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true
}
}
}
}