-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathdevcontainer.json
More file actions
32 lines (32 loc) · 1.1 KB
/
devcontainer.json
File metadata and controls
32 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
"features": {
"ghcr.io/devcontainers/features/rust:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/node:1": {}
},
"postCreateCommand": "./.devcontainer/post_create_command.sh",
"customizations": {
"vscode": {
"extensions": [
"rust-lang.rust-analyzer",
"vadimcn.vscode-lldb",
"juanblanco.solidity",
"eamodio.gitlens"
],
"settings": {
"git.allowForcePush": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.formatOnSave": true,
"rust-analyzer.linkedProjects": [
"coprocessor/fhevm-engine/Cargo.toml",
"kms-connector/Cargo.toml"
],
"rust-analyzer.cargo.extraEnv": {
"SQLX_OFFLINE": "true"
}
}
}
}
}