-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy path.devcontainer.json
More file actions
42 lines (42 loc) · 1.28 KB
/
.devcontainer.json
File metadata and controls
42 lines (42 loc) · 1.28 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
{
"name": "home-assistant/mobile-apps-fcm-push",
"image": "mcr.microsoft.com/devcontainers/base:noble",
"postCreateCommand": "bash -i -c 'cd functions && npm install'",
"remoteEnv": {
"PATH": "${containerEnv:PATH}:${containerWorkspaceFolder}/node_modules/.bin"
},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"github.vscode-pull-request-github"
],
"settings": {
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"[javascript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "always",
"source.sortImports": "always",
"source.removeUnusedImports": "always",
"source.fixAll": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.trimTrailingWhitespace": true
}
}
},
"features": {
"ghcr.io/anthropics/devcontainer-features/claude-code:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {
"version": "24"
},
"ghcr.io/rocker-org/devcontainer-features/apt-packages:1": {
"packages": "python3-dev"
}
}
}