-
-
Notifications
You must be signed in to change notification settings - Fork 533
Expand file tree
/
Copy pathdevcontainer.json
More file actions
29 lines (29 loc) · 807 Bytes
/
devcontainer.json
File metadata and controls
29 lines (29 loc) · 807 Bytes
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
{
"name": "sentry-ruby",
"dockerComposeFile": "docker-compose.yml",
"service": "sentry-dev",
"workspaceFolder": "/workspace/sentry",
"features": {
"ghcr.io/devcontainers/features/github-cli": {},
"ghcr.io/nils-geistmann/devcontainers-features/zsh": {},
"ghcr.io/devcontainers-extra/features/npm-packages": {},
"ghcr.io/rocker-org/devcontainer-features/apt-packages": {
"packages": "inotify-tools"
}
},
"customizations": {
"vscode": {
"extensions": [
"sleistner.vscode-fileutils",
"Shopify.ruby-lsp"
],
"editor.formatOnSaveMode": "modifications",
"editor.formatOnSave": true,
"rubyLsp.rubyVersionManager": {
"identifier": "auto"
},
"rubyLsp.formatter": "auto"
}
},
"remoteUser": "sentry"
}