Add customizations (#19)

This commit is contained in:
Brigit Murtaugh
2022-05-17 12:42:11 -07:00
committed by GitHub
parent c06da75c6a
commit 8f214cce9c

View File

@@ -12,24 +12,30 @@
}, },
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ],
// Set *default* container specific settings.json values on container create. // Configure tool-specific properties.
"settings": { "customizations": {
"lldb.executable": "/usr/bin/lldb", // Configure properties specific to VS Code.
// VS Code don't watch files under ./target "vscode": {
"files.watcherExclude": { // Set *default* container specific settings.json values on container create.
"**/target/**": true "settings": {
}, "lldb.executable": "/usr/bin/lldb",
"rust-analyzer.checkOnSave.command": "clippy" // VS Code don't watch files under ./target
}, "files.watcherExclude": {
"**/target/**": true
},
"rust-analyzer.checkOnSave.command": "clippy"
},
// Add the IDs of extensions you want installed when the container is created. // Add the IDs of extensions you want installed when the container is created.
"extensions": [ "extensions": [
"vadimcn.vscode-lldb", "vadimcn.vscode-lldb",
"mutantdino.resourcemonitor", "mutantdino.resourcemonitor",
"matklad.rust-analyzer", "matklad.rust-analyzer",
"tamasfe.even-better-toml", "tamasfe.even-better-toml",
"serayuzgur.crates" "serayuzgur.crates"
], ]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally. // Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [], // "forwardPorts": [],