-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
93 lines (93 loc) · 3.01 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "Example: TS",
"image": "mcr.microsoft.com/devcontainers/typescript-node:16",
"customizations": {
"vscode": {
"settings": {
"workbench.colorTheme": "Default Dark+",
"editor.fontSize": 14,
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "README.md",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.enablePreviewFromCodeNavigation": false,
"workbench.editor.showIcons": false,
"dev.containers.copyGitConfig": true,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.singleQuote": true,
"prettier.trailingComma": "all",
"prettier.printWidth": 120,
"prettier.tabWidth": 2,
"prettier.semi": false,
"prettier.arrowParens": "avoid",
"prettier.bracketSpacing": true,
"prettier.endOfLine": "lf",
"prettier.proseWrap": "preserve",
"prettier.quoteProps": "as-needed",
"prettier.requireConfig": false,
"prettier.useTabs": false,
"prettier.vueIndentScriptAndStyle": false,
"prettier.htmlWhitespaceSensitivity": "css",
"prettier.insertPragma": false,
"prettier.rangeStart": 0,
"prettier.parser": "typescript",
"prettier.disableLanguages": ["markdown"],
"eslint.validate": [
"javascript",
"typescript"
],
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"eslint.options": {
"extensions": [".js", ".ts"]
},
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": true,
"gitlens.views.repositories.files.layout": "tree",
"gitlens.views.repositories.files.compact": true,
"git-graph.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"extensions": [
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"ms-vscode.vscode-typescript-tslint-plugin",
"ms-vscode.vscode-typescript-next",
"eamodio.gitlens",
"mhutchie.git-graph",
"donjayamanne.githistory",
"waderyan.gitblame"
]
}
},
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": true,
"configureZshAsDefaultShell": true,
"installOhMyZsh": true,
"upgradePackages": true
}
},
"remoteUser": "node",
"containerUser": "node",
"containerEnv": {
"TZ": "Europe/Copenhagen"
},
"forwardPorts": [3000],
"portsAttributes": {
"3000": {
"label": "React App"
}
},
"onCreateCommand": "npm install"
}