{
"name": "zip2",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"build": {
"dockerfile": "Dockerfile",
"context": "..",
"args": {
"USER_UID": "1000",
"USER_GID": "1000"
}
},
"postCreateCommand": "rustup component add rustfmt clippy",
"customizations": {
"codespaces": {
"openFiles": ["CONTRIBUTING.md", ".github/pull_request_template.md"]
},
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"tamasfe.even-better-toml"
],
"settings": {
"rust-analyzer.check.command": "clippy",
"rust-analyzer.cargo.allFeatures": true
}
}
},
"remoteUser": "vscode"
}