-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevcontainer.json
More file actions
61 lines (61 loc) · 1.89 KB
/
devcontainer.json
File metadata and controls
61 lines (61 loc) · 1.89 KB
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
// spell-checker:ignore esbenp azuretools dbaeumer
{
"name": "devcontainer-config-features",
"dockerComposeFile": "compose.yaml",
"service": "devcontainer",
"containerUser": "dev",
"remoteUser": "dev",
"overrideCommand": true,
"workspaceFolder": "/workspaces/features",
"mounts": [
{
"type": "bind",
"source": "${localWorkspaceFolder}",
"target": "/workspaces/features"
},
{
"type": "volume",
"source": "WORKSPACES",
"target": "/workspaces"
}
],
"features": {
// "ghcr.io/devcontainer-config/features/user-init:3": {},
// "ghcr.io/devcontainer-config/features/dot-config:4": {},
"./features/src/user-init": {},
"./features/src/dot-config": {},
"./features/src/unset-git-credential-helper": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
},
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode",
"ms-azuretools.vscode-docker",
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"vitest.explorer"
],
"settings": {
"files.associations": {
"ignore": "ignore",
"attributes": "properties",
"rc": "properties"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"cSpell.autoFormatConfigFile": true,
"cSpell.checkOnlyEnabledFileTypes": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.runtime": "/usr/local/bin/node",
"eslint.workingDirectories": ["/workspaces"],
"js/ts.preferences.importModuleSpecifier": "non-relative",
"js/ts.preferences.includePackageJsonAutoImports": "on",
"js/ts.tsdk.path": "/workspaces/node_modules/typescript/lib"
}
}
},
"onCreateCommand": "pnpm install && pnpm restore || true"
}