outrun/.devcontainer/devcontainer.json

35 lines
984 B
JSON

// For format details, see https://aka.ms/devcontainer.json.
{
"name": "ASDF/Rust",
"workspaceFolder": "/workspace",
"dockerComposeFile": "docker-compose.yml",
"service": "dev",
"customizations": {
"vscode": {
"settings": {
"lldb.executable": "/usr/bin/lldb",
// VS Code don't watch files under ./target
"files.watcherExclude": {
"**/target/**": true
},
"rust-analyzer.checkOnSave.command": "clippy"
},
"extensions": [
"canna.figlet",
"marclipovsky.string-manipulation",
"mutantdino.resourcemonitor",
"RobbOwen.synthwave-vscode",
"Rubymaniac.vscode-direnv",
"rust-lang.rust-analyzer",
"serayuzgur.crates",
"serayuzgur.crates",
"TabNine.tabnine-vscode",
"tamasfe.even-better-toml",
"ue.alphabetical-sorter",
"vadimcn.vscode-lldb",
"wmaurer.change-case"
]
}
},
"remoteUser": "vscode"
}