-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy path.devcontainer.json
42 lines (40 loc) · 1.36 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
{
"name": "Swiss Army Knife Development",
// Open the sub-folder with the source code
"workspaceFolder": "/workspaces/swiss-army-knife-card",
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
"remoteUser": "vscode",
"appPort": ["6000:6000", "9123:8123"],
// "postCreateCommand": "yarn install && sudo container install",
// "runArgs": ["-v", "${localWorkspaceFolder}/.devcontainer/www:/config/www"],
"customizations/vscode/extensions": [
"github.vscode-pull-request-github",
"eamodio.gitlens",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"bierner.lit-html",
"runem.lit-plugin",
"davidanson.vscode-markdownlint",
"redhat.vscode-yaml",
"msjsdiag.debugger-for-chrome",
"yzhang.markdown-all-in-one"
],
"customizations/vscode/settings": {
"files.eol": "\n",
"editor.tabSize": 2,
"terminal.integrated.shell.linux": "/bin/bash",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"markdown.extension.toc.githubCompatibility": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/.hg/store/**": true,
"**/.rpt2_cache/**": true
}
}
}