added devcontainer config

This commit is contained in:
2026-04-25 01:36:22 +03:00
parent af19bf540f
commit 73d85c78fb
+19
View File
@@ -0,0 +1,19 @@
{
"name": "Rust",
"image": "mcr.microsoft.com/devcontainers/rust:latest",
"postCreateCommand": "rustup component add clippy rustfmt rust-analyzer",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"vadimcn.vscode-lldb",
"tamasfe.even-better-toml",
"serayuzgur.crates"
],
"settings": {
"editor.formatOnSave": true,
"rust-analyzer.check.command": "clippy"
}
}
}
}