Skip to content
This repository was archived by the owner on Mar 13, 2024. It is now read-only.

Commit d4633ab

Browse files
garryodcoretl
authored andcommitted
Add agreed upon extensions to customizations
1 parent 7a68885 commit d4633ab

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.devcontainer/devcontainer.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,17 @@
1616
"settings": {
1717
"python.defaultInterpreterPath": "/venv/bin/python"
1818
},
19-
// Add the IDs of extensions you want installed when the container is created.
20-
"extensions": [
21-
"ms-python.python",
22-
"ms-python.vscode-pylance"
23-
],
19+
"customizations": {
20+
"vscode": {
21+
// Add the IDs of extensions you want installed when the container is created.
22+
"extensions": [
23+
"ms-python.python",
24+
"tamasfe.even-better-toml",
25+
"redhat.vscode-yaml",
26+
"ryanluker.vscode-coverage-gutters"
27+
]
28+
}
29+
},
2430
// Make sure the files we are mapping into the container exist on the host
2531
"initializeCommand": "bash -c 'for i in $HOME/.inputrc; do [ -f $i ] || touch $i; done'",
2632
"runArgs": [

.vscode/extensions.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"recommendations": [
33
"ms-vscode-remote.remote-containers",
4-
"ms-python.vscode-pylance",
54
"ms-python.python",
6-
"ryanluker.vscode-coverage-gutters",
7-
"tamasfe.even-better-toml"
5+
"tamasfe.even-better-toml",
6+
"redhat.vscode-yaml",
7+
"ryanluker.vscode-coverage-gutters"
88
]
99
}

0 commit comments

Comments
 (0)