mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
// For format details, see https://aka.ms/devcontainer.json.
|
|
{
|
|
"name": "Homebrew/brew",
|
|
"image": "ghcr.io/homebrew/brew:master",
|
|
"workspaceFolder": "/home/linuxbrew/.linuxbrew/Homebrew",
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/home/linuxbrew/.linuxbrew/Homebrew,type=bind,consistency=cached",
|
|
"onCreateCommand": ".devcontainer/on-create-command.sh",
|
|
"customizations": {
|
|
"codespaces": {
|
|
"repositories": {
|
|
"Homebrew/homebrew-bundle": {
|
|
"permissions": {
|
|
"contents": "write"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"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}"
|
|
}
|
|
}
|