espup/.devcontainer/devcontainer.json
2022-08-11 11:42:36 +02:00

35 lines
925 B
JSON

{
"name": "esp-rs",
"build": {
"dockerfile": "Dockerfile",
"args": {
"CONTAINER_USER": "esp",
"CONTAINER_GROUP": "esp"
}
},
"settings": {
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "modifications",
"editor.formatOnType": true,
"lldb.executable": "/usr/bin/lldb",
"files.watcherExclude": {
"**/target/**": true
},
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.checkOnSave.allTargets": false,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
}
},
"extensions": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml",
"serayuzgur.crates",
"yzhang.markdown-all-in-one",
"GitHub.copilot"
],
"workspaceMount": "source=${localWorkspaceFolder},target=/home/esp/esp-rs,type=bind,consistency=cached",
"workspaceFolder": "/home/esp/esp-rs"
}