outrun/.devcontainer/devcontainer.json

36 lines
984 B
JSON
Raw Normal View History

2022-07-21 08:43:13 +12:00
// 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"
}