mirror of
https://github.com/esp-rs/espup.git
synced 2025-09-28 13:20:41 +00:00
35 lines
925 B
JSON
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"
|
|
}
|