Skip to content

Commit

Permalink
add default extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbradford committed Oct 31, 2023
1 parent 14e5ae8 commit d5ed797
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,23 @@
},

// TODO can't get the yarn install within Dockerfile to show up in dev container
"postCreateCommand": "yarn install --frozen-lockfile"
"postCreateCommand": "yarn install --frozen-lockfile",

// Configure tool-specific properties.
// "customizations": {
// "vscode": {
// "settings": {},
// "extensions": [
// "dbaeumer.vscode-eslint",
// "eamodio.gitlens",
// "esbenp.prettier-vscode",
// "GitHub.copilot",
// "k--kato.intellij-idea-keybindings",
// "Orta.vscode-jest"
// ]
// }
// }
"customizations": {
"vscode": {
"settings": {},
"extensions": [
"dbaeumer.vscode-eslint",
"eamodio.gitlens",
"esbenp.prettier-vscode",
"GitHub.copilot",
"k--kato.intellij-idea-keybindings",
"Orta.vscode-jest",
"ms-azuretools.vscode-docker"
]
}
}

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
Expand Down

0 comments on commit d5ed797

Please sign in to comment.