mirror of
https://github.com/esp-rs/espup.git
synced 2025-09-26 20:30:28 +00:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "espup",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"args": {
|
|
"CONTAINER_USER": "esp",
|
|
"CONTAINER_GROUP": "esp"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"editor.formatOnPaste": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnSaveMode": "file",
|
|
"editor.formatOnType": true,
|
|
"files.watcherExclude": {
|
|
"**/target/**": true
|
|
},
|
|
"lldb.executable": "/usr/bin/lldb",
|
|
"lldb.verboseLogging": true,
|
|
"rust-analyzer.checkOnSave.command": "clippy",
|
|
"rust-analyzer.checkOnSave.allTargets": false,
|
|
"search.exclude": {
|
|
"**/target": true
|
|
}
|
|
},
|
|
"extensions": [
|
|
"vadimcn.vscode-lldb",
|
|
"mutantdino.resourcemonitor",
|
|
"rust-lang.rust-analyzer",
|
|
"tamasfe.even-better-toml",
|
|
"serayuzgur.crates",
|
|
"vivaxy.vscode-conventional-commits",
|
|
"yzhang.markdown-all-in-one",
|
|
"GitHub.copilot"
|
|
]
|
|
}
|
|
},
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/home/esp/espup,type=bind,consistency=cached",
|
|
"workspaceFolder": "/home/esp/espup"
|
|
}
|