Update devcontainer file (#29519)

This commit is contained in:
Jesse Hills 2023-10-25 16:56:52 +13:00 committed by GitHub
parent f42e0522f5
commit 692352364f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,22 +11,26 @@
"appPort": [4000], "appPort": [4000],
"onCreateCommand": "bundle install && npm install", "onCreateCommand": "bundle install && npm install",
"containerEnv": { "DEVCONTAINER": "true" }, "containerEnv": { "DEVCONTAINER": "true" },
"extensions": [ "customizations": {
"davidanson.vscode-markdownlint", "vscode": {
"editorconfig.editorconfig", "extensions": [
"GitHub.vscode-pull-request-github", "davidanson.vscode-markdownlint",
"mrmlnc.vscode-scss", "editorconfig.editorconfig",
"rebornix.Ruby", "GitHub.vscode-pull-request-github",
"streetsidesoftware.code-spell-checker", "mrmlnc.vscode-scss",
"taichi.vscode-textlint", "rebornix.Ruby",
"yzhang.markdown-all-in-one" "streetsidesoftware.code-spell-checker",
], "taichi.vscode-textlint",
"settings": { "yzhang.markdown-all-in-one"
"editor.renderWhitespace": "boundary", ],
"editor.rulers": [80, 100, 120], "settings": {
"gitlens.showWelcomeOnInstall": false, "editor.renderWhitespace": "boundary",
"gitlens.showWhatsNewAfterUpgrades": false, "editor.rulers": [80, 100, 120],
"terminal.integrated.shell.linux": "/usr/bin/zsh", "gitlens.showWelcomeOnInstall": false,
"workbench.startupEditor": "none" "gitlens.showWhatsNewAfterUpgrades": false,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"workbench.startupEditor": "none"
}
}
} }
} }