-
Notifications
You must be signed in to change notification settings - Fork 144
/
.devcontainer.json
38 lines (38 loc) · 944 Bytes
/
.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
{
"name": "Node.js",
// Use the Dockerfile in the .devcontainer folder.
"build": {
"dockerfile": "Dockerfile.dev"
},
"features": {
"ghcr.io/stuartleeks/dev-container-features/shell-history:0": {}
},
"remoteUser": "root",
"customizations": {
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"mrmlnc.vscode-duplicate",
"EditorConfig.EditorConfig",
"tombonnike.vscode-status-bar-format-toggle",
"jebbs.plantuml",
"eamodio.gitlens",
"dbaeumer.vscode-eslint"
],
"settings": {
"npm.packageManager": "yarn",
"debug.console.wordWrap": false,
"debug.console.fontSize": 12,
"editor.stickyScroll.enabled": true,
"editor.foldingImportsByDefault": true,
"editor.codeActionsOnSave": {
"source.organizeImports": "explicit",
"source.fixAll.eslint": "explicit"
},
"[javascript]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
}
}
}
}
}