forked from microsoft/kiota
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
66 lines (66 loc) · 1.92 KB
/
devcontainer.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "C# (.NET)",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "7.0",
"NODE_VERSION": "18"
}
},
"customizations": {
"codespaces": {
"repositories": {
"microsoft/kiota-samples": {
"permissions": {
"contents": "read"
}
}
}
},
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-dotnettools.csharp",
"formulahendry.dotnet-test-explorer",
"editorconfig.editorconfig",
"cschleiden.vscode-github-actions",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"ms-python.python",
"shengchen.vscode-checkstyle",
"dbaeumer.vscode-eslint",
"vscjava.vscode-java-pack",
"github.copilot",
"vector-of-bool.gitflow",
"waderyan.gitblame",
"donjayamanne.githistory",
"eamodio.gitlens",
"codezombiech.gitignore",
"golang.go",
"vscjava.vscode-gradle",
"kosunix.guid",
"wix.vscode-import-cost",
"ms-vsliveshare.vsliveshare",
"eg2.vscode-npm-script",
"fknop.vscode-npm",
"ms-vscode.powershell",
"rebornix.ruby",
"visualstudioexptteam.vscodeintellicode",
"streetsidesoftware.code-spell-checker",
"sswg.swift-lang",
"ms-dotnettools.blazorwasm-companion"
]
}
},
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers-contrib/features/gradle-sdkman:2": {},
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/devcontainers/features/go:1": {},
"ghcr.io/devcontainers/features/java:1": {},
"ghcr.io/devcontainers/features/rust:1": {},
// disabled swift & ruby as their are failing for now
"ghcr.io/devcontainers/features/powershell:1": {}
}
}