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

@@ -11,26 +11,32 @@
} }
}, },
"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.
"extensions": [
"vadimcn.vscode-lldb",
"mutantdino.resourcemonitor",
"matklad.rust-analyzer",
"tamasfe.even-better-toml",
"serayuzgur.crates"
]
}
}, },
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"vadimcn.vscode-lldb",
"mutantdino.resourcemonitor",
"matklad.rust-analyzer",
"tamasfe.even-better-toml",
"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": [],