2024-05-14 09:57:17 +00:00
|
|
|
// For format details, see https://aka.ms/devcontainer.json.
|
2022-10-27 09:18:49 +01:00
|
|
|
{
|
|
|
|
"name": "Homebrew/brew",
|
2025-06-24 11:14:57 +01:00
|
|
|
"image": "ghcr.io/homebrew/brew:main",
|
2022-10-27 09:18:49 +01:00
|
|
|
"workspaceFolder": "/home/linuxbrew/.linuxbrew/Homebrew",
|
|
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/home/linuxbrew/.linuxbrew/Homebrew,type=bind,consistency=cached",
|
|
|
|
"onCreateCommand": ".devcontainer/on-create-command.sh",
|
2024-05-14 09:57:17 +00:00
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
// Installing all necessary extensions for vscode
|
|
|
|
// Taken from: .vscode/extensions.json
|
|
|
|
"extensions": [
|
2024-08-02 02:18:10 -04:00
|
|
|
"Shopify.ruby-lsp",
|
2024-05-14 09:57:17 +00:00
|
|
|
"sorbet.sorbet-vscode-extension",
|
|
|
|
"github.vscode-github-actions",
|
2024-08-15 11:52:43 -04:00
|
|
|
"anykeyh.simplecov-vscode",
|
|
|
|
"ms-azuretools.vscode-docker",
|
|
|
|
"github.vscode-pull-request-github",
|
2024-05-14 09:57:17 +00:00
|
|
|
"davidanson.vscode-markdownlint",
|
2024-08-15 11:52:43 -04:00
|
|
|
"foxundermoon.shell-format",
|
|
|
|
"timonwong.shellcheck",
|
|
|
|
"ban.spellright",
|
|
|
|
"redhat.vscode-yaml",
|
|
|
|
"koichisasada.vscode-rdbg",
|
2024-05-14 09:57:17 +00:00
|
|
|
"editorconfig.editorconfig"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2022-10-27 09:18:49 +01:00
|
|
|
"remoteEnv": {
|
|
|
|
"HOMEBREW_GITHUB_API_TOKEN": "${localEnv:GITHUB_TOKEN}"
|
|
|
|
}
|
|
|
|
}
|