mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

Homebrew/brew has moved to a `main` default branch so we can more move references from `master` to `main`.
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json.
|
|
{
|
|
"name": "Homebrew/brew",
|
|
"image": "ghcr.io/homebrew/brew:main",
|
|
"workspaceFolder": "/home/linuxbrew/.linuxbrew/Homebrew",
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/home/linuxbrew/.linuxbrew/Homebrew,type=bind,consistency=cached",
|
|
"onCreateCommand": ".devcontainer/on-create-command.sh",
|
|
"customizations": {
|
|
"vscode": {
|
|
// Installing all necessary extensions for vscode
|
|
// Taken from: .vscode/extensions.json
|
|
"extensions": [
|
|
"Shopify.ruby-lsp",
|
|
"sorbet.sorbet-vscode-extension",
|
|
"github.vscode-github-actions",
|
|
"anykeyh.simplecov-vscode",
|
|
"ms-azuretools.vscode-docker",
|
|
"github.vscode-pull-request-github",
|
|
"davidanson.vscode-markdownlint",
|
|
"foxundermoon.shell-format",
|
|
"timonwong.shellcheck",
|
|
"ban.spellright",
|
|
"redhat.vscode-yaml",
|
|
"koichisasada.vscode-rdbg",
|
|
"editorconfig.editorconfig"
|
|
]
|
|
}
|
|
},
|
|
"remoteEnv": {
|
|
"HOMEBREW_GITHUB_API_TOKEN": "${localEnv:GITHUB_TOKEN}"
|
|
}
|
|
}
|